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