C:
char c = '\u1246';
printf("%c\n", c); // Output: ቆ
JavaScript:
const char = '\u1246';
console.log(char); // Output: ቆ
Java:
char c = '\u1246';
System.out.println(c); // Output: ቆ
JSON:
{"text": "\u1246"} // Value: ቆ
Python:
char = '\u1246'
print(char) # Output: ቆ
Perl:
my $char = "\x{1246}";
print $char; # Output: ቆ
PHP:
$char = "\x{1246}";
echo $char; // Output: ቆ
Ruby:
char = "\u{1246}"
puts char # Output: ቆ
Rust:
let c = '\u{1246}';
println!("{}", c); // Output: ቆ
Go:
char := '\u1246'
fmt.Printf("%c\n", char) // Output: ቆ
CSS:
/* CSS content property */
.element::before {
content: "\001246"; /* 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%86
MD5:
411127769a69cdf0d449e09958e24920
SHA1:
ea029af91ea1ac1ef9d704a8e0c8d2c45349162d
Base64:
4YmG