C:
char c = '\u1216';
printf("%c\n", c); // Output: ሖ
JavaScript:
const char = '\u1216';
console.log(char); // Output: ሖ
Java:
char c = '\u1216';
System.out.println(c); // Output: ሖ
JSON:
{"text": "\u1216"} // Value: ሖ
Python:
char = '\u1216'
print(char) # Output: ሖ
Perl:
my $char = "\x{1216}";
print $char; # Output: ሖ
PHP:
$char = "\x{1216}";
echo $char; // Output: ሖ
Ruby:
char = "\u{1216}"
puts char # Output: ሖ
Rust:
let c = '\u{1216}';
println!("{}", c); // Output: ሖ
Go:
char := '\u1216'
fmt.Printf("%c\n", char) // Output: ሖ
CSS:
/* CSS content property */
.element::before {
content: "\001216"; /* 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%96
MD5:
960accaa0e4eee639f279a6a047d976f
SHA1:
5b2c714079abdf61e7e9ee785df4825fa91756fc
Base64:
4YiW