C:
char c = '\u13EC';
printf("%c\n", c); // Output: Ꮼ
JavaScript:
const char = '\u13EC';
console.log(char); // Output: Ꮼ
Java:
char c = '\u13EC';
System.out.println(c); // Output: Ꮼ
JSON:
{"text": "\u13EC"} // Value: Ꮼ
Python:
char = '\u13EC'
print(char) # Output: Ꮼ
Perl:
my $char = "\x{13EC}";
print $char; # Output: Ꮼ
PHP:
$char = "\x{13EC}";
echo $char; // Output: Ꮼ
Ruby:
char = "\u{13EC}"
puts char # Output: Ꮼ
Rust:
let c = '\u{13EC}';
println!("{}", c); // Output: Ꮼ
Go:
char := '\u13EC'
fmt.Printf("%c\n", char) // Output: Ꮼ
CSS:
/* CSS content property */
.element::before {
content: "\0013EC"; /* 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%8F%AC
MD5:
2a8322b8f5f35a0ff06eab165b6a62eb
SHA1:
70e4e98de8b29a6f52eb81463bdb250d89361485
Base64:
4Y+s