Unicode Finder

"ǒ" U+01D2(LATIN SMALL LETTER O WITH CARON)

ǒ
U+01D2
Tên Khối
Latin Extended-B
Tên
LATIN SMALL LETTER O WITH CARON

Programming

C
\u01D2
JavaScript
\u01D2
Java
\u01D2
Json
\u01D2
Python
\u01D2
Perl
\x{01D2}
PHP
\x{01D2}
Ruby
\u{01D2}
Rust
\u{1D2}
Go
\u01D2

Web

CSS
\0001D2
HtmlDecimal
ǒ
HtmlHexadecimal
ǒ
Url
%C7%92

Code

MD5
78f9abd5e53e004d1e0ee539ba078191
Sha1
21877e48f1ced3c9c562da5d1d827961bc950f8a
Base64
x5I=

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u01D2';
console.log(char);  // Output: ǒ

Java:

char c = '\u01D2';
System.out.println(c);  // Output: ǒ

JSON:

{"text": "\u01D2"}  // Value: ǒ

Python:

char = '\u01D2'
print(char)  # Output: ǒ

Perl:

my $char = "\x{01D2}";
print $char;  # Output: ǒ

PHP:

$char = "\x{01D2}";
echo $char;  // Output: ǒ

Ruby:

char = "\u{01D2}"
puts char  # Output: ǒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0001D2";  /* Display: ǒ */
}

HTML Decimal:

<p>HTML decimal: &#466;</p>  <!-- Display: ǒ -->

HTML Hexadecimal:

<p>HTML hex: &#x01D2;</p>  <!-- Display: ǒ -->

URL Encoding:

// ǒ URL encoding
https://unicodefinder.com/search.php?query=%C7%92

Encodings

MD5:

78f9abd5e53e004d1e0ee539ba078191

SHA1:

21877e48f1ced3c9c562da5d1d827961bc950f8a

Base64:

x5I=