C:
char c = '\u10E8';
printf("%c\n", c); // Output: შ
JavaScript:
const char = '\u10E8';
console.log(char); // Output: შ
Java:
char c = '\u10E8';
System.out.println(c); // Output: შ
JSON:
{"text": "\u10E8"} // Value: შ
Python:
char = '\u10E8'
print(char) # Output: შ
Perl:
my $char = "\x{10E8}";
print $char; # Output: შ
PHP:
$char = "\x{10E8}";
echo $char; // Output: შ
Ruby:
char = "\u{10E8}"
puts char # Output: შ
Rust:
let c = '\u{10E8}';
println!("{}", c); // Output: შ
Go:
char := '\u10E8'
fmt.Printf("%c\n", char) // Output: შ
CSS:
/* CSS content property */
.element::before {
content: "\0010E8"; /* 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%83%A8
MD5:
332fdabeeaec1eb6a29057301d64c1fa
SHA1:
00501393329b69a4ee5c6c212aa82e2c22bf2f62
Base64:
4YOo