Unicode Finder

"ἄ" U+1F04(GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA)

U+1F04
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA

Programming

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

Web

CSS
\001F04
HtmlDecimal
ἄ
HtmlHexadecimal
ἄ
Url
%E1%BC%84

Code

MD5
7c45dfd4acf2889dcc364e2eb502575a
Sha1
96fa5753b5e13b797699b1e9102ec1a22a9b8691
Base64
4byE

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F04';
console.log(char);  // Output: ἄ

Java:

char c = '\u1F04';
System.out.println(c);  // Output: ἄ

JSON:

{"text": "\u1F04"}  // Value: ἄ

Python:

char = '\u1F04'
print(char)  # Output: ἄ

Perl:

my $char = "\x{1F04}";
print $char;  # Output: ἄ

PHP:

$char = "\x{1F04}";
echo $char;  // Output: ἄ

Ruby:

char = "\u{1F04}"
puts char  # Output: ἄ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7940;</p>  <!-- Display: ἄ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F04;</p>  <!-- Display: ἄ -->

URL Encoding:

// ἄ URL encoding
https://unicodefinder.com/search.php?query=%E1%BC%84

Encodings

MD5:

7c45dfd4acf2889dcc364e2eb502575a

SHA1:

96fa5753b5e13b797699b1e9102ec1a22a9b8691

Base64:

4byE