Of all the Mathematical Alphanumeric styles that predate the SMP block, Mathematical Italic has the smallest number of BMP exceptions: exactly one. Every uppercase letter and every lowercase letter except h maps cleanly to an SMP code point. The lone exception — lowercase h — is at U+210E, where Unicode encodes the Planck constant.
This is a different situation from Script, Fraktur, and Double-Struck, where the exceptions cover multiple letters across both cases because those styles were used for entire alphabets in mathematics. Mathematical Italic was used differently: italic h specifically was the standard symbol for Planck’s constant (6.626 × 10⁻³⁴ J·s) in physics notation, so it got its own code point in the Letterlike Symbols block before the full Mathematical Alphanumeric block existed.
The Exception: Lowercase h
Lowercase italic h is at U+210E (PLANCK CONSTANT). In fonts, this character renders identically to italic h from the SMP block — the same glyph, the same stroke, the same angle. The difference is purely in the code point. The SMP position for italic h (U+1D455) is marked as UNASSIGNED in the Unicode standard because U+210E already covers it.
A generator that computes italic characters by adding a fixed offset to each ASCII code point will produce an unassigned code point for h, which most rendering systems display as a tofu box or skip entirely. The correct implementation handles h as a special case pointing to U+210E.
The full italic h SMP sequence around the gap: g = U+1D454, h = U+1D455 (UNASSIGNED, use U+210E instead), i = U+1D456. One gap in an otherwise continuous sequence.
Mathematical Italic vs Regular Italic
Mathematical Italic (U+1D434 uppercase, U+1D44E lowercase) is distinct from typographic italic in a way that matters for how it is used. Typographic italic is a styling instruction — a font-weight/style setting that tells the renderer to use an italic glyph from the typeface. Mathematical Italic is a set of characters that are intrinsically italic regardless of styling. The distinction is the same as between Mathematical Bold and CSS bold: one is a character, the other is a rendering instruction.
This means Mathematical Italic text stays italic when pasted into a plain-text context, a social media post, a chat message, or any field that ignores formatting. The italic is not strippable because there is no formatting to strip — the characters themselves are the italic forms.
The SMP Cost and Twitter
With one exception, all Mathematical Italic characters are SMP code points. Each costs two units toward Twitter’s 280-character limit. The single exception — italic h at U+210E — is BMP and costs one unit. In practice this asymmetry is unimportant: it applies only to the letter h, and the one-unit saving for that single letter does not change the character economics of a tweet in a meaningful way.
Mathematical Italic is rarely used for full-text social media posts because it reads slowly at paragraph length. The style is most legible for individual words, short labels, or single letters used as mathematical symbols. A tweet where one word is italicized as emphasis is the typical use case, and for that purpose the character cost is manageable.
Digits and Italic
Mathematical Italic does not have a digit series. The Mathematical Alphanumeric Symbols block contains digits for Bold (U+1D7CE–U+1D7D7), Double-Struck (U+1D7D8–U+1D7E1), Sans-Serif (U+1D7E2–U+1D7EB), Sans-Serif Bold (U+1D7EC–U+1D7F5), and Monospace (U+1D7F6–U+1D7FF). There are no italic or bold-italic digit variants.
A generator offering italic text with digits will either leave digits unchanged (plain ASCII), substitute bold or sans-serif SMP digits, or substitute fullwidth digits from the BMP (U+FF10–U+FF19). The fullwidth substitution is the most visually consistent because fullwidth digits have a similar proportion to Mathematical Alphanumeric letters, but it is a different block with a different visual style. There is no perfect substitute.
Mathematical Italic in Practice
The most common legitimate uses of Mathematical Italic outside mathematics are for aesthetic effect in social profiles. A name like “𝑄𝑢𝑖𝑛𝑛” (Quinn in italic) reads cleanly and distinctively on a dark-background profile. Italic is more legible than script/cursive at small sizes because the letterforms remain close to standard ASCII proportions, just slanted. This makes it one of the better choices for mobile-rendered usernames where font sizes are small.
On platforms that allow Unicode in display names but render them at very small sizes (Discord’s member list, for example), Mathematical Italic outperforms styles like Script or Double-Struck in legibility because the letter shapes are more similar to the user’s expectations for those letters. Double-Struck adds stroke complexity; Script changes the letterform more substantially. Italic just slants.
Bold Italic: No Exceptions at All
Mathematical Bold Italic (U+1D468 uppercase, U+1D482 lowercase) has zero BMP exceptions. Every character is a clean SMP code point with no gaps. The reason follows the same pattern as other bold compound styles: Bold Italic was never pre-encoded in the BMP as a notation convention, so when the SMP block was designed in 2001 it got a clean sequence with no holes to route around.
Bold Italic is visually distinctive without being as slow to read as more decorative styles. For a gaming username or social media display name where character budget is not tight, Bold Italic is often a strong choice: clearly different from plain text, still fast to parse, zero rendering uncertainty on modern devices.
The Exceptions Summary Across All Styles
For anyone implementing a font generator or reasoning about which styles require special handling:
- Mathematical Script: 11 BMP exceptions (8 uppercase + 3 lowercase) — the most of any style
- Double-Struck: 7 BMP exceptions (uppercase only: C, H, N, P, Q, R, Z)
- Mathematical Fraktur: 5 BMP exceptions (uppercase only: C, H, I, R, Z)
- Mathematical Italic: 1 BMP exception (lowercase h = U+210E, the Planck constant)
- Mathematical Bold, Bold Italic, Bold Script, Bold Fraktur, Sans-Serif, Sans-Serif Bold, Sans-Serif Italic, Sans-Serif Bold Italic, Monospace: 0 BMP exceptions each
The pattern is consistent: if the style was used as a mathematical notation convention before Unicode’s SMP was designed, it has BMP exceptions. If it was not — because the bold compound styles were never standard mathematical notation in the same way — it has none.
The Italic Text Generator applies this exact mapping, including the h exception, automatically.