C:
char c = '\u1244';
printf("%c\n", c); // Output: ቄ
JavaScript:
const char = '\u1244';
console.log(char); // Output: ቄ
Java:
char c = '\u1244';
System.out.println(c); // Output: ቄ
JSON:
{"text": "\u1244"} // Value: ቄ
Python:
char = '\u1244'
print(char) # Output: ቄ
Perl:
my $char = "\x{1244}";
print $char; # Output: ቄ
PHP:
$char = "\x{1244}";
echo $char; // Output: ቄ
Ruby:
char = "\u{1244}"
puts char # Output: ቄ
Rust:
let c = '\u{1244}';
println!("{}", c); // Output: ቄ
Go:
char := '\u1244'
fmt.Printf("%c\n", char) // Output: ቄ
CSS:
/* CSS content property */
.element::before {
content: "\001244"; /* 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%84
MD5:
9f2ee2ce55ef624d2173a01facd761cf
SHA1:
05445a4003b690da55db7188e0d2462beaa29dc8
Base64:
4YmE