C:
char c = '\u1254';
printf("%c\n", c); // Output: ቔ
JavaScript:
const char = '\u1254';
console.log(char); // Output: ቔ
Java:
char c = '\u1254';
System.out.println(c); // Output: ቔ
JSON:
{"text": "\u1254"} // Value: ቔ
Python:
char = '\u1254'
print(char) # Output: ቔ
Perl:
my $char = "\x{1254}";
print $char; # Output: ቔ
PHP:
$char = "\x{1254}";
echo $char; // Output: ቔ
Ruby:
char = "\u{1254}"
puts char # Output: ቔ
Rust:
let c = '\u{1254}';
println!("{}", c); // Output: ቔ
Go:
char := '\u1254'
fmt.Printf("%c\n", char) // Output: ቔ
CSS:
/* CSS content property */
.element::before {
content: "\001254"; /* 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%94
MD5:
87c096fe9f502d28726335c01d64efc1
SHA1:
5499d84ba1a8edccb97fc0066c869a2b93840f9d
Base64:
4YmU