C:
char c = '\u1208';
printf("%c\n", c); // Output: ለ
JavaScript:
const char = '\u1208';
console.log(char); // Output: ለ
Java:
char c = '\u1208';
System.out.println(c); // Output: ለ
JSON:
{"text": "\u1208"} // Value: ለ
Python:
char = '\u1208'
print(char) # Output: ለ
Perl:
my $char = "\x{1208}";
print $char; # Output: ለ
PHP:
$char = "\x{1208}";
echo $char; // Output: ለ
Ruby:
char = "\u{1208}"
puts char # Output: ለ
Rust:
let c = '\u{1208}';
println!("{}", c); // Output: ለ
Go:
char := '\u1208'
fmt.Printf("%c\n", char) // Output: ለ
CSS:
/* CSS content property */
.element::before {
content: "\001208"; /* 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%88%88
MD5:
49b37ee9170cc9872a4b52e1ae957e44
SHA1:
26445daa275b64670300c2da878fd92c08e24d09
Base64:
4YiI