C:
char c = '\u1696';
printf("%c\n", c); // Output: ᚖ
JavaScript:
const char = '\u1696';
console.log(char); // Output: ᚖ
Java:
char c = '\u1696';
System.out.println(c); // Output: ᚖ
JSON:
{"text": "\u1696"} // Value: ᚖ
Python:
char = '\u1696'
print(char) # Output: ᚖ
Perl:
my $char = "\x{1696}";
print $char; # Output: ᚖ
PHP:
$char = "\x{1696}";
echo $char; // Output: ᚖ
Ruby:
char = "\u{1696}"
puts char # Output: ᚖ
Rust:
let c = '\u{1696}';
println!("{}", c); // Output: ᚖ
Go:
char := '\u1696'
fmt.Printf("%c\n", char) // Output: ᚖ
CSS:
/* CSS content property */
.element::before {
content: "\001696"; /* 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%96
MD5:
d7785282d67002c7761dc373f025a994
SHA1:
356ad420e149d4e62740732ac67125c8b41bd68e
Base64:
4ZqW