How do you access alternative "swash" letters via CSS? I'm using a decorative script font in a web project. This is how it looks now. But I want the "T" to be curled:
The font I'm using is "Zing Rust Script". Many capital letters have "Swash" alternates. For example, here's the "T", as it appears in the "FontLab" font editor. See how there's both the "T", and "T.swsh"?
In a graphics editor, like Adobe Photoshop, letter alternates are displayed automatically:
In CSS, it's possible to enable extended font options using CSS properties like these:
font-feature-settings: 'swsh', 'flac', "liga" , "dlig" , "kern" , "fina" ;
font-feature-settings: "smcp", "swsh" 2;
font-variant-ligatures: normal;
This is working for ligatures, but NOT for Swash letters. I'm working in iOS and Safari. I'm no expert with FontLab, but I don't see a clear place that font alternates or font features are defined.
Any ideas how to access that curly "T"?


