Low Surrogate-Dc48 at U+DC48 is a non-printable UTF-16 low-surrogate code point that functions only as the second code unit in a surrogate pair. It sits in the Low Surrogates block, a Unicode range reserved for encoding supplementary characters rather than for independent letters, symbols, or controls. Its real use is inside UTF-16 based systems such as Windows APIs, JavaScript engines, Java strings, .NET strings, and diagnostic tools that show raw code units. When it follows the matching high surrogate, this value helps encode one character above U+FFFF, such as an emoji, historic script character, or specialized symbol. On its own, it has no glyph, pronunciation, or textual meaning. The most important gotcha is that an isolated U+DC48 indicates malformed text. It can be introduced by cutting a string between UTF-16 code units, counting “characters” incorrectly, corrupting serialized data, or converting encodings with insufficient validation. Software may reject it, replace it with an error marker, or preserve it internally in ways that break comparison, search, and interchange.