Unicode Finder

"Ṑ" U+1E50(LATIN CAPITAL LETTER O WITH MACRON AND GRAVE)

U+1E50
Block Name
Latin Extended Additional
Name
LATIN CAPITAL LETTER O WITH MACRON AND GRAVE

Programming

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

Web

CSS
\001E50
HtmlDecimal
Ṑ
HtmlHexadecimal
Ṑ
Url
%E1%B9%90

Code

MD5
4db822b7c752d7557d008af2079b6590
Sha1
5c89b44bbd03302ff46899bf2374d832dd1ca8f7
Base64
4bmQ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1E50';
console.log(char);  // Output: Ṑ

Java:

char c = '\u1E50';
System.out.println(c);  // Output: Ṑ

JSON:

{"text": "\u1E50"}  // Value: Ṑ

Python:

char = '\u1E50'
print(char)  # Output: Ṑ

Perl:

my $char = "\x{1E50}";
print $char;  # Output: Ṑ

PHP:

$char = "\x{1E50}";
echo $char;  // Output: Ṑ

Ruby:

char = "\u{1E50}"
puts char  # Output: Ṑ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7760;</p>  <!-- Display: Ṑ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E50;</p>  <!-- Display: Ṑ -->

URL Encoding:

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

Encodings

MD5:

4db822b7c752d7557d008af2079b6590

SHA1:

5c89b44bbd03302ff46899bf2374d832dd1ca8f7

Base64:

4bmQ