Unicode Finder

"ᾰ" U+1FB0(GREEK SMALL LETTER ALPHA WITH VRACHY)

U+1FB0
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER ALPHA WITH VRACHY

Programming

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

Web

CSS
\001FB0
HtmlDecimal
ᾰ
HtmlHexadecimal
ᾰ
Url
%E1%BE%B0

Code

MD5
b76afad6709cf4173bb813afbc98f491
Sha1
229253187d191dd57fcc54f6177d2c809d11069c
Base64
4b6w

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FB0';
console.log(char);  // Output: ᾰ

Java:

char c = '\u1FB0';
System.out.println(c);  // Output: ᾰ

JSON:

{"text": "\u1FB0"}  // Value: ᾰ

Python:

char = '\u1FB0'
print(char)  # Output: ᾰ

Perl:

my $char = "\x{1FB0}";
print $char;  # Output: ᾰ

PHP:

$char = "\x{1FB0}";
echo $char;  // Output: ᾰ

Ruby:

char = "\u{1FB0}"
puts char  # Output: ᾰ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8112;</p>  <!-- Display: ᾰ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FB0;</p>  <!-- Display: ᾰ -->

URL Encoding:

// ᾰ URL encoding
https://unicodefinder.com/search.php?query=%E1%BE%B0

Encodings

MD5:

b76afad6709cf4173bb813afbc98f491

SHA1:

229253187d191dd57fcc54f6177d2c809d11069c

Base64:

4b6w