C:
char c = '\u1210';
printf("%c\n", c); // Output: ሐ
JavaScript:
const char = '\u1210';
console.log(char); // Output: ሐ
Java:
char c = '\u1210';
System.out.println(c); // Output: ሐ
JSON:
{"text": "\u1210"} // Value: ሐ
Python:
char = '\u1210'
print(char) # Output: ሐ
Perl:
my $char = "\x{1210}";
print $char; # Output: ሐ
PHP:
$char = "\x{1210}";
echo $char; // Output: ሐ
Ruby:
char = "\u{1210}"
puts char # Output: ሐ
Rust:
let c = '\u{1210}';
println!("{}", c); // Output: ሐ
Go:
char := '\u1210'
fmt.Printf("%c\n", char) // Output: ሐ
CSS:
/* CSS content property */
.element::before {
content: "\001210"; /* 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=%E1%88%90
MD5:
7a86400e8411c999876219a9998a5b87
SHA1:
fad16a126ada0ea4e6b41d8e36265fb68ebab3be
Base64:
4YiQ