Unicode Finder

"s" U+0073(LATIN SMALL LETTER S)

s
U+0073
Block Name
Basic Latin
Name
LATIN SMALL LETTER S

Programming

C
\u0073
JavaScript
\u0073
Java
\u0073
Json
\u0073
Python
\u0073
Perl
\x{0073}
PHP
\x{0073}
Ruby
\u{0073}
Rust
\u{73}
Go
\u0073

Web

CSS
\000073
HtmlDecimal
s
HtmlHexadecimal
s
Url
s

Code

MD5
03c7c0ace395d80182db07ae2c30f034
Sha1
a0f1490a20d0211c997b44bc357e1972deab8ae3
Base64
cw==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0073';
console.log(char);  // Output: s

Java:

char c = '\u0073';
System.out.println(c);  // Output: s

JSON:

{"text": "\u0073"}  // Value: s

Python:

char = '\u0073'
print(char)  # Output: s

Perl:

my $char = "\x{0073}";
print $char;  # Output: s

PHP:

$char = "\x{0073}";
echo $char;  // Output: s

Ruby:

char = "\u{0073}"
puts char  # Output: s

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000073";  /* Display: s */
}

HTML Decimal:

<p>HTML decimal: &#115;</p>  <!-- Display: s -->

HTML Hexadecimal:

<p>HTML hex: &#x0073;</p>  <!-- Display: s -->

URL Encoding:

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

Encodings

MD5:

03c7c0ace395d80182db07ae2c30f034

SHA1:

a0f1490a20d0211c997b44bc357e1972deab8ae3

Base64:

cw==