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