C:
char c = '\u1207';
printf("%c\n", c); // Output: ሇ
JavaScript:
const char = '\u1207';
console.log(char); // Output: ሇ
Java:
char c = '\u1207';
System.out.println(c); // Output: ሇ
JSON:
{"text": "\u1207"} // Value: ሇ
Python:
char = '\u1207'
print(char) # Output: ሇ
Perl:
my $char = "\x{1207}";
print $char; # Output: ሇ
PHP:
$char = "\x{1207}";
echo $char; // Output: ሇ
Ruby:
char = "\u{1207}"
puts char # Output: ሇ
Rust:
let c = '\u{1207}';
println!("{}", c); // Output: ሇ
Go:
char := '\u1207'
fmt.Printf("%c\n", char) // Output: ሇ
CSS:
/* CSS content property */
.element::before {
content: "\001207"; /* 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%87
MD5:
a5e8562285ec260a165ee5526c4ed49c
SHA1:
101b5fb7a0bf528cc1c9e6fa20eb6d62cc68c7d2
Base64:
4YiH