C:
char c = '\u0563';
printf("%c\n", c); // Output: գ
JavaScript:
const char = '\u0563';
console.log(char); // Output: գ
Java:
char c = '\u0563';
System.out.println(c); // Output: գ
JSON:
{"text": "\u0563"} // Value: գ
Python:
char = '\u0563'
print(char) # Output: գ
Perl:
my $char = "\x{0563}";
print $char; # Output: գ
PHP:
$char = "\x{0563}";
echo $char; // Output: գ
Ruby:
char = "\u{0563}"
puts char # Output: գ
Rust:
let c = '\u{563}';
println!("{}", c); // Output: գ
Go:
char := '\u0563'
fmt.Printf("%c\n", char) // Output: գ
CSS:
/* CSS content property */
.element::before {
content: "\000563"; /* 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%A3
MD5:
65eab415de65aec99a5a83ae8bded82b
SHA1:
bd1769cd31a668e4e805efa6855894a2d9ad16ad
Base64:
1aM=