Back
Asciify Logo
Asciify

Latin Small Letter S

Pulling triple grammatical duty in English — marking plurals (cats), possessives (cat's), and third-person verb forms (runs) — lowercase 's' is the nineteenth letter of the Latin alphabet and one of the most frequent consonants, accounting for roughly 6.3 % of characters in typical English corpora. Its ASCII code point is 115 (0x73), 32 above its uppercase counterpart 'S' at 83 (0x53), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs.

Latin Letter

Technical Details

Code Example

</>
// %s format specifier for strings
char *name = "Alice";
printf("Hello, %s!\n", name); // Hello, Alice!
printf("%-10s|", name); // Left-align: 'Alice |'

Common Usage

  • String format specifier: In C-family printf-style formatting, %s formats a null-terminated string argument — likely the most frequently reached-for format token in practice. The same syntax appears in Python 2 string formatting, Go's fmt package, Ruby, and Perl, though buffer handling, encoding, and nil/null behavior vary across implementations.

  • Regex whitespace and dotall flag: The shorthand \s typically matches whitespace characters (space, tab, newline, and similar) in most regex engines, with \S matching non-whitespace. Separately, the 's' flag (re.DOTALL in Python, /s in Perl and PCRE) changes the . metacharacter to match newline characters as well — two distinct uses of 's' in regex contexts that are occasionally confused.

  • Voiced and voiceless alternation: In English, 's' alternates between voiceless /s/ (sit, pass) and voiced /z/ (dogs, is, was) depending on phonetic environment — a pattern largely invisible to native speakers but significant in phonetics, speech synthesis, and second-language instruction where the two sounds must be explicitly distinguished.

  • Diacritical variants: š (caron) is a distinct letter across Slavic languages including Czech, Slovak, and Slovenian; ş (cedilla) appears in Turkish and Romanian; ś (acute) is standard in Polish; and ṣ (dot below) is used in IAST transliteration of Sanskrit. The German ß (eszett), historically a ligature of long s and z, is now classified as a separate letter — related to 's' etymologically but occupying its own Unicode code point (U+00DF).

  • String format specifier: In C-family printf-style formatting, %s formats a null-terminated string argument — likely the most frequently reached-for format token in practice. The same syntax appears in Python 2 string formatting, Go's fmt package, Ruby, and Perl, though buffer handling, encoding, and nil/null behavior vary across implementations.

  • Regex whitespace and dotall flag: The shorthand \s typically matches whitespace characters (space, tab, newline, and similar) in most regex engines, with \S matching non-whitespace. Separately, the 's' flag (re.DOTALL in Python, /s in Perl and PCRE) changes the . metacharacter to match newline characters as well — two distinct uses of 's' in regex contexts that are occasionally confused.

  • Voiced and voiceless alternation: In English, 's' alternates between voiceless /s/ (sit, pass) and voiced /z/ (dogs, is, was) depending on phonetic environment — a pattern largely invisible to native speakers but significant in phonetics, speech synthesis, and second-language instruction where the two sounds must be explicitly distinguished.

  • Diacritical variants: š (caron) is a distinct letter across Slavic languages including Czech, Slovak, and Slovenian; ş (cedilla) appears in Turkish and Romanian; ś (acute) is standard in Polish; and ṣ (dot below) is used in IAST transliteration of Sanskrit. The German ß (eszett), historically a ligature of long s and z, is now classified as a separate letter — related to 's' etymologically but occupying its own Unicode code point (U+00DF).

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026