Unicode Finder

"ǫ" U+01EB(LATIN SMALL LETTER O WITH OGONEK)

ǫ
U+01EB
Tên Khối
Latin Extended-B
Tên
LATIN SMALL LETTER O WITH OGONEK

Programming

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

Web

CSS
\0001EB
HtmlDecimal
ǫ
HtmlHexadecimal
ǫ
Url
%C7%AB

Code

MD5
387a25bfc729af83c27a2de58e61a2d5
Sha1
f63391a70d25c8fa9eff69b6561c883e1d9bf99e
Base64
x6s=

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u01EB';
console.log(char);  // Output: ǫ

Java:

char c = '\u01EB';
System.out.println(c);  // Output: ǫ

JSON:

{"text": "\u01EB"}  // Value: ǫ

Python:

char = '\u01EB'
print(char)  # Output: ǫ

Perl:

my $char = "\x{01EB}";
print $char;  # Output: ǫ

PHP:

$char = "\x{01EB}";
echo $char;  // Output: ǫ

Ruby:

char = "\u{01EB}"
puts char  # Output: ǫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#491;</p>  <!-- Display: ǫ -->

HTML Hexadecimal:

<p>HTML hex: &#x01EB;</p>  <!-- Display: ǫ -->

URL Encoding:

// ǫ URL encoding
https://unicodefinder.com/search.php?query=%C7%AB

Encodings

MD5:

387a25bfc729af83c27a2de58e61a2d5

SHA1:

f63391a70d25c8fa9eff69b6561c883e1d9bf99e

Base64:

x6s=