C:
char c = '\u0561';
printf("%c\n", c); // Output: ա
JavaScript:
const char = '\u0561';
console.log(char); // Output: ա
Java:
char c = '\u0561';
System.out.println(c); // Output: ա
JSON:
{"text": "\u0561"} // Value: ա
Python:
char = '\u0561'
print(char) # Output: ա
Perl:
my $char = "\x{0561}";
print $char; # Output: ա
PHP:
$char = "\x{0561}";
echo $char; // Output: ա
Ruby:
char = "\u{0561}"
puts char # Output: ա
Rust:
let c = '\u{561}';
println!("{}", c); // Output: ա
Go:
char := '\u0561'
fmt.Printf("%c\n", char) // Output: ա
CSS:
/* CSS content property */
.element::before {
content: "\000561"; /* 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=%D5%A1
MD5:
a6fdaa20605ca142bc36e9784f44e53e
SHA1:
f1cba4bca6145f46a8db5a72f0ccd9e7022dc2ca
Base64:
1aE=