C:
char c = '\u1230';
printf("%c\n", c); // Output: ሰ
JavaScript:
const char = '\u1230';
console.log(char); // Output: ሰ
Java:
char c = '\u1230';
System.out.println(c); // Output: ሰ
JSON:
{"text": "\u1230"} // Value: ሰ
Python:
char = '\u1230'
print(char) # Output: ሰ
Perl:
my $char = "\x{1230}";
print $char; # Output: ሰ
PHP:
$char = "\x{1230}";
echo $char; // Output: ሰ
Ruby:
char = "\u{1230}"
puts char # Output: ሰ
Rust:
let c = '\u{1230}';
println!("{}", c); // Output: ሰ
Go:
char := '\u1230'
fmt.Printf("%c\n", char) // Output: ሰ
CSS:
/* CSS content property */
.element::before {
content: "\001230"; /* 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%B0
MD5:
fa2256b11918a738455328617a9a855d
SHA1:
b5c9965e327abc5845509ff0eb7651f9df641d4c
Base64:
4Yiw