C:
char c = '\u1268';
printf("%c\n", c); // Output: ቨ
JavaScript:
const char = '\u1268';
console.log(char); // Output: ቨ
Java:
char c = '\u1268';
System.out.println(c); // Output: ቨ
JSON:
{"text": "\u1268"} // Value: ቨ
Python:
char = '\u1268'
print(char) # Output: ቨ
Perl:
my $char = "\x{1268}";
print $char; # Output: ቨ
PHP:
$char = "\x{1268}";
echo $char; // Output: ቨ
Ruby:
char = "\u{1268}"
puts char # Output: ቨ
Rust:
let c = '\u{1268}';
println!("{}", c); // Output: ቨ
Go:
char := '\u1268'
fmt.Printf("%c\n", char) // Output: ቨ
CSS:
/* CSS content property */
.element::before {
content: "\001268"; /* 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%89%A8
MD5:
5f8a4bd5fe08ec1d777601df0755a232
SHA1:
4a9af7670d1912f9263e9c6573020d1703606a57
Base64:
4Ymo