C:
char c = '\u1693';
printf("%c\n", c); // Output: ᚓ
JavaScript:
const char = '\u1693';
console.log(char); // Output: ᚓ
Java:
char c = '\u1693';
System.out.println(c); // Output: ᚓ
JSON:
{"text": "\u1693"} // Value: ᚓ
Python:
char = '\u1693'
print(char) # Output: ᚓ
Perl:
my $char = "\x{1693}";
print $char; # Output: ᚓ
PHP:
$char = "\x{1693}";
echo $char; // Output: ᚓ
Ruby:
char = "\u{1693}"
puts char # Output: ᚓ
Rust:
let c = '\u{1693}';
println!("{}", c); // Output: ᚓ
Go:
char := '\u1693'
fmt.Printf("%c\n", char) // Output: ᚓ
CSS:
/* CSS content property */
.element::before {
content: "\001693"; /* 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%93
MD5:
a5cf8a3542ec47bd3fbb82582d39be32
SHA1:
6ce6aa2ef3088250aac9e2f1ca8f69cf50b38ce6
Base64:
4ZqT