Unicode Finder

"Ᾰ" U+1FB8(GREEK CAPITAL LETTER ALPHA WITH VRACHY)

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

Programming

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

Web

CSS
\001FB8
HtmlDecimal
Ᾰ
HtmlHexadecimal
Ᾰ
Url
%E1%BE%B8

Code

MD5
eeb854f7cf76dab8a3894c69297e58eb
Sha1
a4039cd7a80e3264e420688e426aca016866e928
Base64
4b64

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FB8';
console.log(char);  // Output: Ᾰ

Java:

char c = '\u1FB8';
System.out.println(c);  // Output: Ᾰ

JSON:

{"text": "\u1FB8"}  // Value: Ᾰ

Python:

char = '\u1FB8'
print(char)  # Output: Ᾰ

Perl:

my $char = "\x{1FB8}";
print $char;  # Output: Ᾰ

PHP:

$char = "\x{1FB8}";
echo $char;  // Output: Ᾰ

Ruby:

char = "\u{1FB8}"
puts char  # Output: Ᾰ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8120;</p>  <!-- Display: Ᾰ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FB8;</p>  <!-- Display: Ᾰ -->

URL Encoding:

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

Encodings

MD5:

eeb854f7cf76dab8a3894c69297e58eb

SHA1:

a4039cd7a80e3264e420688e426aca016866e928

Base64:

4b64