C:
char c = '\u1247';
printf("%c\n", c); // Output: ቇ
JavaScript:
const char = '\u1247';
console.log(char); // Output: ቇ
Java:
char c = '\u1247';
System.out.println(c); // Output: ቇ
JSON:
{"text": "\u1247"} // Value: ቇ
Python:
char = '\u1247'
print(char) # Output: ቇ
Perl:
my $char = "\x{1247}";
print $char; # Output: ቇ
PHP:
$char = "\x{1247}";
echo $char; // Output: ቇ
Ruby:
char = "\u{1247}"
puts char # Output: ቇ
Rust:
let c = '\u{1247}';
println!("{}", c); // Output: ቇ
Go:
char := '\u1247'
fmt.Printf("%c\n", char) // Output: ቇ
CSS:
/* CSS content property */
.element::before {
content: "\001247"; /* 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%87
MD5:
069d2eee9bd62ae9c0fe5a714372e456
SHA1:
62a2d167d462637e7106cd1a7ba4b46eff003275
Base64:
4YmH