C:
char c = '\u1264';
printf("%c\n", c); // Output: ቤ
JavaScript:
const char = '\u1264';
console.log(char); // Output: ቤ
Java:
char c = '\u1264';
System.out.println(c); // Output: ቤ
JSON:
{"text": "\u1264"} // Value: ቤ
Python:
char = '\u1264'
print(char) # Output: ቤ
Perl:
my $char = "\x{1264}";
print $char; # Output: ቤ
PHP:
$char = "\x{1264}";
echo $char; // Output: ቤ
Ruby:
char = "\u{1264}"
puts char # Output: ቤ
Rust:
let c = '\u{1264}';
println!("{}", c); // Output: ቤ
Go:
char := '\u1264'
fmt.Printf("%c\n", char) // Output: ቤ
CSS:
/* CSS content property */
.element::before {
content: "\001264"; /* 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%A4
MD5:
c15ab57d748a2ebece5564a428fa221f
SHA1:
536e2772fb9eca0b54e26ae95ae12596eaf902f6
Base64:
4Ymk