Unicode Finder

"Ỏ" U+1ECE(LATIN CAPITAL LETTER O WITH HOOK ABOVE)

U+1ECE
Tên Khối
Latin Extended Additional
Tên
LATIN CAPITAL LETTER O WITH HOOK ABOVE

Programming

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

Web

CSS
\001ECE
HtmlDecimal
Ỏ
HtmlHexadecimal
Ỏ
Url
%E1%BB%8E

Code

MD5
5d754a047cfadd1398476c5acebeb9ec
Sha1
a59b0db1402647cfc35cc328e24ee4ed4218497a
Base64
4buO

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1ECE';
console.log(char);  // Output: Ỏ

Java:

char c = '\u1ECE';
System.out.println(c);  // Output: Ỏ

JSON:

{"text": "\u1ECE"}  // Value: Ỏ

Python:

char = '\u1ECE'
print(char)  # Output: Ỏ

Perl:

my $char = "\x{1ECE}";
print $char;  # Output: Ỏ

PHP:

$char = "\x{1ECE}";
echo $char;  // Output: Ỏ

Ruby:

char = "\u{1ECE}"
puts char  # Output: Ỏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7886;</p>  <!-- Display: Ỏ -->

HTML Hexadecimal:

<p>HTML hex: &#x1ECE;</p>  <!-- Display: Ỏ -->

URL Encoding:

// Ỏ URL encoding
https://unicodefinder.com/search.php?query=%E1%BB%8E

Encodings

MD5:

5d754a047cfadd1398476c5acebeb9ec

SHA1:

a59b0db1402647cfc35cc328e24ee4ed4218497a

Base64:

4buO