C:
char c = '\u1213';
printf("%c\n", c); // Output: ሓ
JavaScript:
const char = '\u1213';
console.log(char); // Output: ሓ
Java:
char c = '\u1213';
System.out.println(c); // Output: ሓ
JSON:
{"text": "\u1213"} // Value: ሓ
Python:
char = '\u1213'
print(char) # Output: ሓ
Perl:
my $char = "\x{1213}";
print $char; # Output: ሓ
PHP:
$char = "\x{1213}";
echo $char; // Output: ሓ
Ruby:
char = "\u{1213}"
puts char # Output: ሓ
Rust:
let c = '\u{1213}';
println!("{}", c); // Output: ሓ
Go:
char := '\u1213'
fmt.Printf("%c\n", char) // Output: ሓ
CSS:
/* CSS content property */
.element::before {
content: "\001213"; /* 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%93
MD5:
c2548a8e4ac4f653708802d2fe60ac52
SHA1:
0dc6e5b725c07fc7bd412c2731c5d1fc9f22129a
Base64:
4YiT