C:
char c = '\u1245';
printf("%c\n", c); // Output: ቅ
JavaScript:
const char = '\u1245';
console.log(char); // Output: ቅ
Java:
char c = '\u1245';
System.out.println(c); // Output: ቅ
JSON:
{"text": "\u1245"} // Value: ቅ
Python:
char = '\u1245'
print(char) # Output: ቅ
Perl:
my $char = "\x{1245}";
print $char; # Output: ቅ
PHP:
$char = "\x{1245}";
echo $char; // Output: ቅ
Ruby:
char = "\u{1245}"
puts char # Output: ቅ
Rust:
let c = '\u{1245}';
println!("{}", c); // Output: ቅ
Go:
char := '\u1245'
fmt.Printf("%c\n", char) // Output: ቅ
CSS:
/* CSS content property */
.element::before {
content: "\001245"; /* 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%85
MD5:
de2bb4cd97a308343c511f76eb27eb00
SHA1:
7536607c34f19539a0e90dd8eb9906000506565b
Base64:
4YmF