C:
char c = '\u1694';
printf("%c\n", c); // Output: ᚔ
JavaScript:
const char = '\u1694';
console.log(char); // Output: ᚔ
Java:
char c = '\u1694';
System.out.println(c); // Output: ᚔ
JSON:
{"text": "\u1694"} // Value: ᚔ
Python:
char = '\u1694'
print(char) # Output: ᚔ
Perl:
my $char = "\x{1694}";
print $char; # Output: ᚔ
PHP:
$char = "\x{1694}";
echo $char; // Output: ᚔ
Ruby:
char = "\u{1694}"
puts char # Output: ᚔ
Rust:
let c = '\u{1694}';
println!("{}", c); // Output: ᚔ
Go:
char := '\u1694'
fmt.Printf("%c\n", char) // Output: ᚔ
CSS:
/* CSS content property */
.element::before {
content: "\001694"; /* 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%94
MD5:
acc69924c58750213d6ce0e3b3d4e6e5
SHA1:
82447b0531783e1b26868522eecb3a7e048dcf4b
Base64:
4ZqU