Unicode Finder

"ἃ" U+1F03(GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA)

U+1F03
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA

Programming

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

Web

CSS
\001F03
HtmlDecimal
ἃ
HtmlHexadecimal
ἃ
Url
%E1%BC%83

Code

MD5
f34bcee46b3ebe8c150a01ce89a9c331
Sha1
15f28e1d3d2537244fd307a3c4d63d2bdd566575
Base64
4byD

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F03';
console.log(char);  // Output: ἃ

Java:

char c = '\u1F03';
System.out.println(c);  // Output: ἃ

JSON:

{"text": "\u1F03"}  // Value: ἃ

Python:

char = '\u1F03'
print(char)  # Output: ἃ

Perl:

my $char = "\x{1F03}";
print $char;  # Output: ἃ

PHP:

$char = "\x{1F03}";
echo $char;  // Output: ἃ

Ruby:

char = "\u{1F03}"
puts char  # Output: ἃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7939;</p>  <!-- Display: ἃ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F03;</p>  <!-- Display: ἃ -->

URL Encoding:

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

Encodings

MD5:

f34bcee46b3ebe8c150a01ce89a9c331

SHA1:

15f28e1d3d2537244fd307a3c4d63d2bdd566575

Base64:

4byD