C:
char c = '\u0562';
printf("%c\n", c); // Output: բ
JavaScript:
const char = '\u0562';
console.log(char); // Output: բ
Java:
char c = '\u0562';
System.out.println(c); // Output: բ
JSON:
{"text": "\u0562"} // Value: բ
Python:
char = '\u0562'
print(char) # Output: բ
Perl:
my $char = "\x{0562}";
print $char; # Output: բ
PHP:
$char = "\x{0562}";
echo $char; // Output: բ
Ruby:
char = "\u{0562}"
puts char # Output: բ
Rust:
let c = '\u{562}';
println!("{}", c); // Output: բ
Go:
char := '\u0562'
fmt.Printf("%c\n", char) // Output: բ
CSS:
/* CSS content property */
.element::before {
content: "\000562"; /* 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%A2
MD5:
8ebb012acd0b4af33399a04363c27bac
SHA1:
ea882c8999c4573e42de04610ca09dc48e2979b0
Base64:
1aI=