Unicode Finder

"Ἁ" U+1F09(GREEK CAPITAL LETTER ALPHA WITH DASIA)

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

Programming

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

Web

CSS
\001F09
HtmlDecimal
Ἁ
HtmlHexadecimal
Ἁ
Url
%E1%BC%89

Code

MD5
96ae5e83c87f34b9f4f3f2ce68a0df89
Sha1
a862964df3b23b77d1378ce272856e4dfc897e2a
Base64
4byJ

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F09';
console.log(char);  // Output: Ἁ

Java:

char c = '\u1F09';
System.out.println(c);  // Output: Ἁ

JSON:

{"text": "\u1F09"}  // Value: Ἁ

Python:

char = '\u1F09'
print(char)  # Output: Ἁ

Perl:

my $char = "\x{1F09}";
print $char;  # Output: Ἁ

PHP:

$char = "\x{1F09}";
echo $char;  // Output: Ἁ

Ruby:

char = "\u{1F09}"
puts char  # Output: Ἁ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7945;</p>  <!-- Display: Ἁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F09;</p>  <!-- Display: Ἁ -->

URL Encoding:

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

Encodings

MD5:

96ae5e83c87f34b9f4f3f2ce68a0df89

SHA1:

a862964df3b23b77d1378ce272856e4dfc897e2a

Base64:

4byJ