C:
char c = '\u1231';
printf("%c\n", c); // Output: ሱ
JavaScript:
const char = '\u1231';
console.log(char); // Output: ሱ
Java:
char c = '\u1231';
System.out.println(c); // Output: ሱ
JSON:
{"text": "\u1231"} // Value: ሱ
Python:
char = '\u1231'
print(char) # Output: ሱ
Perl:
my $char = "\x{1231}";
print $char; # Output: ሱ
PHP:
$char = "\x{1231}";
echo $char; // Output: ሱ
Ruby:
char = "\u{1231}"
puts char # Output: ሱ
Rust:
let c = '\u{1231}';
println!("{}", c); // Output: ሱ
Go:
char := '\u1231'
fmt.Printf("%c\n", char) // Output: ሱ
CSS:
/* CSS content property */
.element::before {
content: "\001231"; /* 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%B1
MD5:
081fa42cd01bce76b74961f82e89022f
SHA1:
314190c78c3453acd52cba43970179de049c79de
Base64:
4Yix