C:
char c = '\u1B93';
printf("%c\n", c); // Output: ᮓ
JavaScript:
const char = '\u1B93';
console.log(char); // Output: ᮓ
Java:
char c = '\u1B93';
System.out.println(c); // Output: ᮓ
JSON:
{"text": "\u1B93"} // Value: ᮓ
Python:
char = '\u1B93'
print(char) # Output: ᮓ
Perl:
my $char = "\x{1B93}";
print $char; # Output: ᮓ
PHP:
$char = "\x{1B93}";
echo $char; // Output: ᮓ
Ruby:
char = "\u{1B93}"
puts char # Output: ᮓ
Rust:
let c = '\u{1B93}';
println!("{}", c); // Output: ᮓ
Go:
char := '\u1B93'
fmt.Printf("%c\n", char) // Output: ᮓ
CSS:
/* CSS content property */
.element::before {
content: "\001B93"; /* 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%AE%93
MD5:
e983c6fabf0f68654d91e993a2d7de55
SHA1:
c10c26bdfd8d7f4c1a3354a14177570d882cfd5d
Base64:
4a6T