C:
char c = '\u1226';
printf("%c\n", c); // Output: ሦ
JavaScript:
const char = '\u1226';
console.log(char); // Output: ሦ
Java:
char c = '\u1226';
System.out.println(c); // Output: ሦ
JSON:
{"text": "\u1226"} // Value: ሦ
Python:
char = '\u1226'
print(char) # Output: ሦ
Perl:
my $char = "\x{1226}";
print $char; # Output: ሦ
PHP:
$char = "\x{1226}";
echo $char; // Output: ሦ
Ruby:
char = "\u{1226}"
puts char # Output: ሦ
Rust:
let c = '\u{1226}';
println!("{}", c); // Output: ሦ
Go:
char := '\u1226'
fmt.Printf("%c\n", char) // Output: ሦ
CSS:
/* CSS content property */
.element::before {
content: "\001226"; /* 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%A6
MD5:
99ec81cdb98886c22c27a9f49409454c
SHA1:
30b56148cd39ccff7291582ff2de9adaa29ccc9b
Base64:
4Yim