C:
char c = '\u13E5';
printf("%c\n", c); // Output: Ꮵ
JavaScript:
const char = '\u13E5';
console.log(char); // Output: Ꮵ
Java:
char c = '\u13E5';
System.out.println(c); // Output: Ꮵ
JSON:
{"text": "\u13E5"} // Value: Ꮵ
Python:
char = '\u13E5'
print(char) # Output: Ꮵ
Perl:
my $char = "\x{13E5}";
print $char; # Output: Ꮵ
PHP:
$char = "\x{13E5}";
echo $char; // Output: Ꮵ
Ruby:
char = "\u{13E5}"
puts char # Output: Ꮵ
Rust:
let c = '\u{13E5}';
println!("{}", c); // Output: Ꮵ
Go:
char := '\u13E5'
fmt.Printf("%c\n", char) // Output: Ꮵ
CSS:
/* CSS content property */
.element::before {
content: "\0013E5"; /* 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%A5
MD5:
a792f946ee859d4e64c3331b344cab98
SHA1:
5ff84d8581e0bb66040429ade64fcf09b51ba18a
Base64:
4Y+l