C:
char c = '\u1253';
printf("%c\n", c); // Output: ቓ
JavaScript:
const char = '\u1253';
console.log(char); // Output: ቓ
Java:
char c = '\u1253';
System.out.println(c); // Output: ቓ
JSON:
{"text": "\u1253"} // Value: ቓ
Python:
char = '\u1253'
print(char) # Output: ቓ
Perl:
my $char = "\x{1253}";
print $char; # Output: ቓ
PHP:
$char = "\x{1253}";
echo $char; // Output: ቓ
Ruby:
char = "\u{1253}"
puts char # Output: ቓ
Rust:
let c = '\u{1253}';
println!("{}", c); // Output: ቓ
Go:
char := '\u1253'
fmt.Printf("%c\n", char) // Output: ቓ
CSS:
/* CSS content property */
.element::before {
content: "\001253"; /* 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%93
MD5:
ec73058a991a355778423c1ca5136e82
SHA1:
fb8c72d6c4d4fb749f67bc0f66bab217f4f8525e
Base64:
4YmT