Unicode Finder

"Ṍ" U+1E4C(LATIN CAPITAL LETTER O WITH TILDE AND ACUTE)

U+1E4C
区块名称
Latin Extended Additional
名称
LATIN CAPITAL LETTER O WITH TILDE AND ACUTE

Programming

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

Web

CSS
\001E4C
HtmlDecimal
Ṍ
HtmlHexadecimal
Ṍ
Url
%E1%B9%8C

Code

MD5
4ebf2ca81cdec7c7dbbbc84af31f24c7
Sha1
b641795b05d4e6594b69c1bbfab89ad470c6b591
Base64
4bmM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1E4C';
console.log(char);  // Output: Ṍ

Java:

char c = '\u1E4C';
System.out.println(c);  // Output: Ṍ

JSON:

{"text": "\u1E4C"}  // Value: Ṍ

Python:

char = '\u1E4C'
print(char)  # Output: Ṍ

Perl:

my $char = "\x{1E4C}";
print $char;  # Output: Ṍ

PHP:

$char = "\x{1E4C}";
echo $char;  // Output: Ṍ

Ruby:

char = "\u{1E4C}"
puts char  # Output: Ṍ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7756;</p>  <!-- Display: Ṍ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E4C;</p>  <!-- Display: Ṍ -->

URL Encoding:

// Ṍ URL encoding
https://unicodefinder.com/search.php?query=%E1%B9%8C

Encodings

MD5:

4ebf2ca81cdec7c7dbbbc84af31f24c7

SHA1:

b641795b05d4e6594b69c1bbfab89ad470c6b591

Base64:

4bmM