C:
char c = '\u120F';
printf("%c\n", c); // Output: ሏ
JavaScript:
const char = '\u120F';
console.log(char); // Output: ሏ
Java:
char c = '\u120F';
System.out.println(c); // Output: ሏ
JSON:
{"text": "\u120F"} // Value: ሏ
Python:
char = '\u120F'
print(char) # Output: ሏ
Perl:
my $char = "\x{120F}";
print $char; # Output: ሏ
PHP:
$char = "\x{120F}";
echo $char; // Output: ሏ
Ruby:
char = "\u{120F}"
puts char # Output: ሏ
Rust:
let c = '\u{120F}';
println!("{}", c); // Output: ሏ
Go:
char := '\u120F'
fmt.Printf("%c\n", char) // Output: ሏ
CSS:
/* CSS content property */
.element::before {
content: "\00120F"; /* 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%8F
MD5:
a4d1eb73aa3e136ce18bfc33957e1216
SHA1:
f72dc98ba99937fd78ea52ccc4c14f4e8c2f3377
Base64:
4YiP