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