Unicode Finder

"Ṡ" U+1E60(LATIN CAPITAL LETTER S WITH DOT ABOVE)

U+1E60
ブロック名
Latin Extended Additional
名前
LATIN CAPITAL LETTER S WITH DOT ABOVE

Programming

C
\u1E60
JavaScript
\u1E60
Java
\u1E60
Json
\u1E60
Python
\u1E60
Perl
\x{1E60}
PHP
\x{1E60}
Ruby
\u{1E60}
Rust
\u{1E60}
Go
\u1E60

Web

CSS
\001E60
HtmlDecimal
Ṡ
HtmlHexadecimal
Ṡ
Url
%E1%B9%A0

Code

MD5
c5bd508efd467e64fcf9ef059faaabee
Sha1
ddcfafac820c0cfa599b1f255364a94f668cbf35
Base64
4bmg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1E60';
console.log(char);  // Output: Ṡ

Java:

char c = '\u1E60';
System.out.println(c);  // Output: Ṡ

JSON:

{"text": "\u1E60"}  // Value: Ṡ

Python:

char = '\u1E60'
print(char)  # Output: Ṡ

Perl:

my $char = "\x{1E60}";
print $char;  # Output: Ṡ

PHP:

$char = "\x{1E60}";
echo $char;  // Output: Ṡ

Ruby:

char = "\u{1E60}"
puts char  # Output: Ṡ

Rust:

let c = '\u{1E60}';
println!("{}", c);  // Output: Ṡ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001E60";  /* Display: Ṡ */
}

HTML Decimal:

<p>HTML decimal: &#7776;</p>  <!-- Display: Ṡ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E60;</p>  <!-- Display: Ṡ -->

URL Encoding:

// Ṡ URL encoding
https://unicodefinder.com/search.php?query=%E1%B9%A0

Encodings

MD5:

c5bd508efd467e64fcf9ef059faaabee

SHA1:

ddcfafac820c0cfa599b1f255364a94f668cbf35

Base64:

4bmg