C:
char c = '\u0569';
printf("%c\n", c); // Output: թ
JavaScript:
const char = '\u0569';
console.log(char); // Output: թ
Java:
char c = '\u0569';
System.out.println(c); // Output: թ
JSON:
{"text": "\u0569"} // Value: թ
Python:
char = '\u0569'
print(char) # Output: թ
Perl:
my $char = "\x{0569}";
print $char; # Output: թ
PHP:
$char = "\x{0569}";
echo $char; // Output: թ
Ruby:
char = "\u{0569}"
puts char # Output: թ
Rust:
let c = '\u{569}';
println!("{}", c); // Output: թ
Go:
char := '\u0569'
fmt.Printf("%c\n", char) // Output: թ
CSS:
/* CSS content property */
.element::before {
content: "\000569"; /* 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%A9
MD5:
220d61244edc2f73127465bbdc11d93a
SHA1:
bb2bde7a4adf32f9edeb4d14e65138b3f01196d2
Base64:
1ak=