C:
char c = '\u120B';
printf("%c\n", c); // Output: ላ
JavaScript:
const char = '\u120B';
console.log(char); // Output: ላ
Java:
char c = '\u120B';
System.out.println(c); // Output: ላ
JSON:
{"text": "\u120B"} // Value: ላ
Python:
char = '\u120B'
print(char) # Output: ላ
Perl:
my $char = "\x{120B}";
print $char; # Output: ላ
PHP:
$char = "\x{120B}";
echo $char; // Output: ላ
Ruby:
char = "\u{120B}"
puts char # Output: ላ
Rust:
let c = '\u{120B}';
println!("{}", c); // Output: ላ
Go:
char := '\u120B'
fmt.Printf("%c\n", char) // Output: ላ
CSS:
/* CSS content property */
.element::before {
content: "\00120B"; /* 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%8B
MD5:
a2e068d2347fc7e5b545641ec3ad76ca
SHA1:
0a62bf9e95109680f5628554a87de314dcffb003
Base64:
4YiL