C:
char c = '\u0533';
printf("%c\n", c); // Output: Գ
JavaScript:
const char = '\u0533';
console.log(char); // Output: Գ
Java:
char c = '\u0533';
System.out.println(c); // Output: Գ
JSON:
{"text": "\u0533"} // Value: Գ
Python:
char = '\u0533'
print(char) # Output: Գ
Perl:
my $char = "\x{0533}";
print $char; # Output: Գ
PHP:
$char = "\x{0533}";
echo $char; // Output: Գ
Ruby:
char = "\u{0533}"
puts char # Output: Գ
Rust:
let c = '\u{533}';
println!("{}", c); // Output: Գ
Go:
char := '\u0533'
fmt.Printf("%c\n", char) // Output: Գ
CSS:
/* CSS content property */
.element::before {
content: "\000533"; /* 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%B3
MD5:
bd57abbc90734181746ff899f2572d2d
SHA1:
4c437bf0f33e25f534e66c7da56dbb001b47f675
Base64:
1LM=