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