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: Ա
CSS:
/* CSS content property */
.element::before {
content: "\000531"; /* Display: Ա */
}
HTML Decimal:
<p>HTML decimal: Ա</p> <!-- Display: Ա -->
HTML Hexadecimal:
<p>HTML hex: Ա</p> <!-- Display: Ա -->
URL Encoding:
// Ա URL encoding
https://unicodefinder.com/search.php?query=%D4%B1
MD5:
a5fd9cd60f9795aadb209b1fdf976cb6
SHA1:
fcca1bade0d294f0b5436e3d28ce379fb89650cb
Base64:
1LE=