C:
char c = '\u16A2';
printf("%c\n", c); // Output: ᚢ
JavaScript:
const char = '\u16A2';
console.log(char); // Output: ᚢ
Java:
char c = '\u16A2';
System.out.println(c); // Output: ᚢ
JSON:
{"text": "\u16A2"} // Value: ᚢ
Python:
char = '\u16A2'
print(char) # Output: ᚢ
Perl:
my $char = "\x{16A2}";
print $char; # Output: ᚢ
PHP:
$char = "\x{16A2}";
echo $char; // Output: ᚢ
Ruby:
char = "\u{16A2}"
puts char # Output: ᚢ
Rust:
let c = '\u{16A2}';
println!("{}", c); // Output: ᚢ
Go:
char := '\u16A2'
fmt.Printf("%c\n", char) // Output: ᚢ
CSS:
/* CSS content property */
.element::before {
content: "\0016A2"; /* 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%9A%A2
MD5:
7ed8778197e58ebf8506b0d4dda8b588
SHA1:
a00a8fd6e8ad8a81c924124a3dc80086b55d950f
Base64:
4Zqi