Unicode Finder

"ө" U+04E9(CYRILLIC SMALL LETTER BARRED O)

ө
U+04E9
Nama Blok
Cyrillic
Nama
CYRILLIC SMALL LETTER BARRED O

Programming

C
\u04E9
JavaScript
\u04E9
Java
\u04E9
Json
\u04E9
Python
\u04E9
Perl
\x{04E9}
PHP
\x{04E9}
Ruby
\u{04E9}
Rust
\u{4E9}
Go
\u04E9

Web

CSS
\0004E9
HtmlDecimal
ө
HtmlHexadecimal
ө
Url
%D3%A9

Code

MD5
b9d93bad1ed45fdc87a4c6c0a7ad1e9b
Sha1
e430bf4151c3dafb0664bc669c74e7272b187415
Base64
06k=

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u04E9';
console.log(char);  // Output: ө

Java:

char c = '\u04E9';
System.out.println(c);  // Output: ө

JSON:

{"text": "\u04E9"}  // Value: ө

Python:

char = '\u04E9'
print(char)  # Output: ө

Perl:

my $char = "\x{04E9}";
print $char;  # Output: ө

PHP:

$char = "\x{04E9}";
echo $char;  // Output: ө

Ruby:

char = "\u{04E9}"
puts char  # Output: ө

Rust:

let c = '\u{4E9}';
println!("{}", c);  // Output: ө

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0004E9";  /* Display: ө */
}

HTML Decimal:

<p>HTML decimal: &#1257;</p>  <!-- Display: ө -->

HTML Hexadecimal:

<p>HTML hex: &#x04E9;</p>  <!-- Display: ө -->

URL Encoding:

// ө URL encoding
https://unicodefinder.com/search.php?query=%D3%A9

Encodings

MD5:

b9d93bad1ed45fdc87a4c6c0a7ad1e9b

SHA1:

e430bf4151c3dafb0664bc669c74e7272b187415

Base64:

06k=