Unicode Finder

"S" U+0053(LATIN CAPITAL LETTER S)

S
U+0053
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER S

Programming

C
\u0053
JavaScript
\u0053
Java
\u0053
Json
\u0053
Python
\u0053
Perl
\x{0053}
PHP
\x{0053}
Ruby
\u{0053}
Rust
\u{53}
Go
\u0053

Web

CSS
\000053
HtmlDecimal
S
HtmlHexadecimal
S
Url
S

Code

MD5
5dbc98dcc983a70728bd082d1a47546e
Sha1
02aa629c8b16cd17a44f3a0efec2feed43937642
Base64
Uw==

Usage Examples

Programming Languages

C:

char c = '\u0053';
printf("%c\n", c);  // Output: S

JavaScript:

const char = '\u0053';
console.log(char);  // Output: S

Java:

char c = '\u0053';
System.out.println(c);  // Output: S

JSON:

{"text": "\u0053"}  // Value: S

Python:

char = '\u0053'
print(char)  # Output: S

Perl:

my $char = "\x{0053}";
print $char;  # Output: S

PHP:

$char = "\x{0053}";
echo $char;  // Output: S

Ruby:

char = "\u{0053}"
puts char  # Output: S

Rust:

let c = '\u{53}';
println!("{}", c);  // Output: S

Go:

char := '\u0053'
fmt.Printf("%c\n", char)  // Output: S

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000053";  /* Display: S */
}

HTML Decimal:

<p>HTML decimal: &#83;</p>  <!-- Display: S -->

HTML Hexadecimal:

<p>HTML hex: &#x0053;</p>  <!-- Display: S -->

URL Encoding:

// S URL encoding
https://unicodefinder.com/search.php?query=S

Encodings

MD5:

5dbc98dcc983a70728bd082d1a47546e

SHA1:

02aa629c8b16cd17a44f3a0efec2feed43937642

Base64:

Uw==