Unicode Finder

"Ա" U+0531(ARMENIAN CAPITAL LETTER AYB)

Ա
U+0531
Название Блока
Armenian
Название
ARMENIAN CAPITAL LETTER AYB

Programming

C
\u0531
JavaScript
\u0531
Java
\u0531
Json
\u0531
Python
\u0531
Perl
\x{0531}
PHP
\x{0531}
Ruby
\u{0531}
Rust
\u{531}
Go
\u0531

Web

CSS
\000531
HtmlDecimal
Ա
HtmlHexadecimal
Ա
Url
%D4%B1

Code

MD5
a5fd9cd60f9795aadb209b1fdf976cb6
Sha1
fcca1bade0d294f0b5436e3d28ce379fb89650cb
Base64
1LE=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0531';
console.log(char);  // Output: Ա

Java:

char c = '\u0531';
System.out.println(c);  // Output: Ա

JSON:

{"text": "\u0531"}  // Value: Ա

Python:

char = '\u0531'
print(char)  # Output: Ա

Perl:

my $char = "\x{0531}";
print $char;  # Output: Ա

PHP:

$char = "\x{0531}";
echo $char;  // Output: Ա

Ruby:

char = "\u{0531}"
puts char  # Output: Ա

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000531";  /* Display: Ա */
}

HTML Decimal:

<p>HTML decimal: &#1329;</p>  <!-- Display: Ա -->

HTML Hexadecimal:

<p>HTML hex: &#x0531;</p>  <!-- Display: Ա -->

URL Encoding:

// Ա URL encoding
https://unicodefinder.com/search.php?query=%D4%B1

Encodings

MD5:

a5fd9cd60f9795aadb209b1fdf976cb6

SHA1:

fcca1bade0d294f0b5436e3d28ce379fb89650cb

Base64:

1LE=