Unicode Finder

"Բ" U+0532(ARMENIAN CAPITAL LETTER BEN)

Բ
U+0532
Название Блока
Armenian
Название
ARMENIAN CAPITAL LETTER BEN

Programming

C
\u0532
JavaScript
\u0532
Java
\u0532
Json
\u0532
Python
\u0532
Perl
\x{0532}
PHP
\x{0532}
Ruby
\u{0532}
Rust
\u{532}
Go
\u0532

Web

CSS
\000532
HtmlDecimal
Բ
HtmlHexadecimal
Բ
Url
%D4%B2

Code

MD5
0ed56d192a87e1856463fc3866cd51ce
Sha1
9f9376600afa000f0d3536b3b40eaf7fe6eb90e3
Base64
1LI=

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u0532';
console.log(char);  // Output: Բ

Java:

char c = '\u0532';
System.out.println(c);  // Output: Բ

JSON:

{"text": "\u0532"}  // Value: Բ

Python:

char = '\u0532'
print(char)  # Output: Բ

Perl:

my $char = "\x{0532}";
print $char;  # Output: Բ

PHP:

$char = "\x{0532}";
echo $char;  // Output: Բ

Ruby:

char = "\u{0532}"
puts char  # Output: Բ

Rust:

let c = '\u{532}';
println!("{}", c);  // Output: Բ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000532";  /* Display: Բ */
}

HTML Decimal:

<p>HTML decimal: &#1330;</p>  <!-- Display: Բ -->

HTML Hexadecimal:

<p>HTML hex: &#x0532;</p>  <!-- Display: Բ -->

URL Encoding:

// Բ URL encoding
https://unicodefinder.com/search.php?query=%D4%B2

Encodings

MD5:

0ed56d192a87e1856463fc3866cd51ce

SHA1:

9f9376600afa000f0d3536b3b40eaf7fe6eb90e3

Base64:

1LI=