C:
char c = '\u1690';
printf("%c\n", c); // Output: ᚐ
JavaScript:
const char = '\u1690';
console.log(char); // Output: ᚐ
Java:
char c = '\u1690';
System.out.println(c); // Output: ᚐ
JSON:
{"text": "\u1690"} // Value: ᚐ
Python:
char = '\u1690'
print(char) # Output: ᚐ
Perl:
my $char = "\x{1690}";
print $char; # Output: ᚐ
PHP:
$char = "\x{1690}";
echo $char; // Output: ᚐ
Ruby:
char = "\u{1690}"
puts char # Output: ᚐ
Rust:
let c = '\u{1690}';
println!("{}", c); // Output: ᚐ
Go:
char := '\u1690'
fmt.Printf("%c\n", char) // Output: ᚐ
CSS:
/* CSS content property */
.element::before {
content: "\001690"; /* 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%90
MD5:
b56a711881c3aacd52ce4409c14eeb24
SHA1:
8c0ab681d1e764a3f6cfb18fc7d718f31030a996
Base64:
4ZqQ