C:
char c = '\u0570';
printf("%c\n", c); // Output: հ
JavaScript:
const char = '\u0570';
console.log(char); // Output: հ
Java:
char c = '\u0570';
System.out.println(c); // Output: հ
JSON:
{"text": "\u0570"} // Value: հ
Python:
char = '\u0570'
print(char) # Output: հ
Perl:
my $char = "\x{0570}";
print $char; # Output: հ
PHP:
$char = "\x{0570}";
echo $char; // Output: հ
Ruby:
char = "\u{0570}"
puts char # Output: հ
Rust:
let c = '\u{570}';
println!("{}", c); // Output: հ
Go:
char := '\u0570'
fmt.Printf("%c\n", char) // Output: հ
CSS:
/* CSS content property */
.element::before {
content: "\000570"; /* 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%B0
MD5:
779bda4b8daf6da17a6e3e51b3b53371
SHA1:
5ce8c36514801b7cb6ded60956bb78befe47bc7f
Base64:
1bA=