C:
char c = '\u1256';
printf("%c\n", c); // Output: ቖ
JavaScript:
const char = '\u1256';
console.log(char); // Output: ቖ
Java:
char c = '\u1256';
System.out.println(c); // Output: ቖ
JSON:
{"text": "\u1256"} // Value: ቖ
Python:
char = '\u1256'
print(char) # Output: ቖ
Perl:
my $char = "\x{1256}";
print $char; # Output: ቖ
PHP:
$char = "\x{1256}";
echo $char; // Output: ቖ
Ruby:
char = "\u{1256}"
puts char # Output: ቖ
Rust:
let c = '\u{1256}';
println!("{}", c); // Output: ቖ
Go:
char := '\u1256'
fmt.Printf("%c\n", char) // Output: ቖ
CSS:
/* CSS content property */
.element::before {
content: "\001256"; /* 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%96
MD5:
50553d87ef31ad206ddd056760b366e9
SHA1:
08344d13429c024f1772dca49ec18251dce53b4a
Base64:
4YmW