C:
char c = '\u1233';
printf("%c\n", c); // Output: ሳ
JavaScript:
const char = '\u1233';
console.log(char); // Output: ሳ
Java:
char c = '\u1233';
System.out.println(c); // Output: ሳ
JSON:
{"text": "\u1233"} // Value: ሳ
Python:
char = '\u1233'
print(char) # Output: ሳ
Perl:
my $char = "\x{1233}";
print $char; # Output: ሳ
PHP:
$char = "\x{1233}";
echo $char; // Output: ሳ
Ruby:
char = "\u{1233}"
puts char # Output: ሳ
Rust:
let c = '\u{1233}';
println!("{}", c); // Output: ሳ
Go:
char := '\u1233'
fmt.Printf("%c\n", char) // Output: ሳ
CSS:
/* CSS content property */
.element::before {
content: "\001233"; /* 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%B3
MD5:
3e59b2cc575dfe933d9c05a83bc0f750
SHA1:
93f2dfaa0c9bcf0d08c7ea6b20efa5c4b376021e
Base64:
4Yiz