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