C:
char c = '\u1222';
printf("%c\n", c); // Output: ሢ
JavaScript:
const char = '\u1222';
console.log(char); // Output: ሢ
Java:
char c = '\u1222';
System.out.println(c); // Output: ሢ
JSON:
{"text": "\u1222"} // Value: ሢ
Python:
char = '\u1222'
print(char) # Output: ሢ
Perl:
my $char = "\x{1222}";
print $char; # Output: ሢ
PHP:
$char = "\x{1222}";
echo $char; // Output: ሢ
Ruby:
char = "\u{1222}"
puts char # Output: ሢ
Rust:
let c = '\u{1222}';
println!("{}", c); // Output: ሢ
Go:
char := '\u1222'
fmt.Printf("%c\n", char) // Output: ሢ
CSS:
/* CSS content property */
.element::before {
content: "\001222"; /* 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%A2
MD5:
eea4df7c41d7028a6bb3285dfd1f0a20
SHA1:
9475163f6d5eaa8cc8e77f79cf177d39aefd6274
Base64:
4Yii