C:
char c = '\u0559';
printf("%c\n", c); // Output: ՙ
JavaScript:
const char = '\u0559';
console.log(char); // Output: ՙ
Java:
char c = '\u0559';
System.out.println(c); // Output: ՙ
JSON:
{"text": "\u0559"} // Value: ՙ
Python:
char = '\u0559'
print(char) # Output: ՙ
Perl:
my $char = "\x{0559}";
print $char; # Output: ՙ
PHP:
$char = "\x{0559}";
echo $char; // Output: ՙ
Ruby:
char = "\u{0559}"
puts char # Output: ՙ
Rust:
let c = '\u{559}';
println!("{}", c); // Output: ՙ
Go:
char := '\u0559'
fmt.Printf("%c\n", char) // Output: ՙ
CSS:
/* CSS content property */
.element::before {
content: "\000559"; /* 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%99
MD5:
c96d3eb8f93f7d21e00cd4bfab2d0843
SHA1:
01f538c966d646b58438263ac4b69054bff0b33c
Base64:
1Zk=