Unicode Finder

"ᾼ" U+1FBC(GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI)

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

Programming

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

Web

CSS
\001FBC
HtmlDecimal
ᾼ
HtmlHexadecimal
ᾼ
Url
%E1%BE%BC

Code

MD5
815c5f7af72356c719884dae5b8d42a5
Sha1
36a7531d99286ea969bd2de31addddd1e1d68b7b
Base64
4b68

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FBC';
console.log(char);  // Output: ᾼ

Java:

char c = '\u1FBC';
System.out.println(c);  // Output: ᾼ

JSON:

{"text": "\u1FBC"}  // Value: ᾼ

Python:

char = '\u1FBC'
print(char)  # Output: ᾼ

Perl:

my $char = "\x{1FBC}";
print $char;  # Output: ᾼ

PHP:

$char = "\x{1FBC}";
echo $char;  // Output: ᾼ

Ruby:

char = "\u{1FBC}"
puts char  # Output: ᾼ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8124;</p>  <!-- Display: ᾼ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FBC;</p>  <!-- Display: ᾼ -->

URL Encoding:

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

Encodings

MD5:

815c5f7af72356c719884dae5b8d42a5

SHA1:

36a7531d99286ea969bd2de31addddd1e1d68b7b

Base64:

4b68