Unicode Finder

"Ὁ" U+1F49(GREEK CAPITAL LETTER OMICRON WITH DASIA)

U+1F49
Tên Khối
Greek Extended
Tên
GREEK CAPITAL LETTER OMICRON WITH DASIA

Programming

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

Web

CSS
\001F49
HtmlDecimal
Ὁ
HtmlHexadecimal
Ὁ
Url
%E1%BD%89

Code

MD5
d3c2c5f68899ee82a07079b15d889131
Sha1
5fa1c4a3a2fcc813f30467221843dc6e258870f3
Base64
4b2J

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F49';
console.log(char);  // Output: Ὁ

Java:

char c = '\u1F49';
System.out.println(c);  // Output: Ὁ

JSON:

{"text": "\u1F49"}  // Value: Ὁ

Python:

char = '\u1F49'
print(char)  # Output: Ὁ

Perl:

my $char = "\x{1F49}";
print $char;  # Output: Ὁ

PHP:

$char = "\x{1F49}";
echo $char;  // Output: Ὁ

Ruby:

char = "\u{1F49}"
puts char  # Output: Ὁ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8009;</p>  <!-- Display: Ὁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F49;</p>  <!-- Display: Ὁ -->

URL Encoding:

// Ὁ URL encoding
https://unicodefinder.com/search.php?query=%E1%BD%89

Encodings

MD5:

d3c2c5f68899ee82a07079b15d889131

SHA1:

5fa1c4a3a2fcc813f30467221843dc6e258870f3

Base64:

4b2J