C:
char c = '\u1215';
printf("%c\n", c); // Output: ሕ
JavaScript:
const char = '\u1215';
console.log(char); // Output: ሕ
Java:
char c = '\u1215';
System.out.println(c); // Output: ሕ
JSON:
{"text": "\u1215"} // Value: ሕ
Python:
char = '\u1215'
print(char) # Output: ሕ
Perl:
my $char = "\x{1215}";
print $char; # Output: ሕ
PHP:
$char = "\x{1215}";
echo $char; // Output: ሕ
Ruby:
char = "\u{1215}"
puts char # Output: ሕ
Rust:
let c = '\u{1215}';
println!("{}", c); // Output: ሕ
Go:
char := '\u1215'
fmt.Printf("%c\n", char) // Output: ሕ
CSS:
/* CSS content property */
.element::before {
content: "\001215"; /* 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%95
MD5:
989ef69c4aa3ecb00b68f6188b253833
SHA1:
5b10b89efffabecb5e5ae2ede331232c2a5a2616
Base64:
4YiV