C:
char c = '\u1223';
printf("%c\n", c); // Output: ሣ
JavaScript:
const char = '\u1223';
console.log(char); // Output: ሣ
Java:
char c = '\u1223';
System.out.println(c); // Output: ሣ
JSON:
{"text": "\u1223"} // Value: ሣ
Python:
char = '\u1223'
print(char) # Output: ሣ
Perl:
my $char = "\x{1223}";
print $char; # Output: ሣ
PHP:
$char = "\x{1223}";
echo $char; // Output: ሣ
Ruby:
char = "\u{1223}"
puts char # Output: ሣ
Rust:
let c = '\u{1223}';
println!("{}", c); // Output: ሣ
Go:
char := '\u1223'
fmt.Printf("%c\n", char) // Output: ሣ
CSS:
/* CSS content property */
.element::before {
content: "\001223"; /* 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%A3
MD5:
d631b5aa68e0e1706deb167ad90787ae
SHA1:
11d78db663b96bfaa65c14dab01ce283f592f419
Base64:
4Yij