C:
char c = '\u1206';
printf("%c\n", c); // Output: ሆ
JavaScript:
const char = '\u1206';
console.log(char); // Output: ሆ
Java:
char c = '\u1206';
System.out.println(c); // Output: ሆ
JSON:
{"text": "\u1206"} // Value: ሆ
Python:
char = '\u1206'
print(char) # Output: ሆ
Perl:
my $char = "\x{1206}";
print $char; # Output: ሆ
PHP:
$char = "\x{1206}";
echo $char; // Output: ሆ
Ruby:
char = "\u{1206}"
puts char # Output: ሆ
Rust:
let c = '\u{1206}';
println!("{}", c); // Output: ሆ
Go:
char := '\u1206'
fmt.Printf("%c\n", char) // Output: ሆ
CSS:
/* CSS content property */
.element::before {
content: "\001206"; /* 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%86
MD5:
80c7a5a4224f5b1037c6a8a515c77306
SHA1:
a41f9e094227fb5dd12eb67a89ecc66664e95b98
Base64:
4YiG