C:
char c = '\u1248';
printf("%c\n", c); // Output: ቈ
JavaScript:
const char = '\u1248';
console.log(char); // Output: ቈ
Java:
char c = '\u1248';
System.out.println(c); // Output: ቈ
JSON:
{"text": "\u1248"} // Value: ቈ
Python:
char = '\u1248'
print(char) # Output: ቈ
Perl:
my $char = "\x{1248}";
print $char; # Output: ቈ
PHP:
$char = "\x{1248}";
echo $char; // Output: ቈ
Ruby:
char = "\u{1248}"
puts char # Output: ቈ
Rust:
let c = '\u{1248}';
println!("{}", c); // Output: ቈ
Go:
char := '\u1248'
fmt.Printf("%c\n", char) // Output: ቈ
CSS:
/* CSS content property */
.element::before {
content: "\001248"; /* 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%88
MD5:
74170a9a69df633bdcc8d227da6c0ac1
SHA1:
1fd9b678b42e70c2a426c4ba07c442f04b2f5479
Base64:
4YmI