C:
char c = '\u1692';
printf("%c\n", c); // Output: ᚒ
JavaScript:
const char = '\u1692';
console.log(char); // Output: ᚒ
Java:
char c = '\u1692';
System.out.println(c); // Output: ᚒ
JSON:
{"text": "\u1692"} // Value: ᚒ
Python:
char = '\u1692'
print(char) # Output: ᚒ
Perl:
my $char = "\x{1692}";
print $char; # Output: ᚒ
PHP:
$char = "\x{1692}";
echo $char; // Output: ᚒ
Ruby:
char = "\u{1692}"
puts char # Output: ᚒ
Rust:
let c = '\u{1692}';
println!("{}", c); // Output: ᚒ
Go:
char := '\u1692'
fmt.Printf("%c\n", char) // Output: ᚒ
CSS:
/* CSS content property */
.element::before {
content: "\001692"; /* 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%92
MD5:
6996c35c7296b6182eccebcf3cdc11dd
SHA1:
c0603fc81145f55e45fcd5e2b45ff44c1089c866
Base64:
4ZqS