C:
char c = '\u1691';
printf("%c\n", c); // Output: ᚑ
JavaScript:
const char = '\u1691';
console.log(char); // Output: ᚑ
Java:
char c = '\u1691';
System.out.println(c); // Output: ᚑ
JSON:
{"text": "\u1691"} // Value: ᚑ
Python:
char = '\u1691'
print(char) # Output: ᚑ
Perl:
my $char = "\x{1691}";
print $char; # Output: ᚑ
PHP:
$char = "\x{1691}";
echo $char; // Output: ᚑ
Ruby:
char = "\u{1691}"
puts char # Output: ᚑ
Rust:
let c = '\u{1691}';
println!("{}", c); // Output: ᚑ
Go:
char := '\u1691'
fmt.Printf("%c\n", char) // Output: ᚑ
CSS:
/* CSS content property */
.element::before {
content: "\001691"; /* 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%91
MD5:
49552cbfdd93154b5b8723ad4c58480c
SHA1:
03a41eea46e9dc083f64788da6b9e97365f1658b
Base64:
4ZqR