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: Բ
CSS:
/* CSS content property */
.element::before {
content: "\000532"; /* 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%B2
MD5:
0ed56d192a87e1856463fc3866cd51ce
SHA1:
9f9376600afa000f0d3536b3b40eaf7fe6eb90e3
Base64:
1LI=