C:
char c = '\u1682';
printf("%c\n", c); // Output: ᚂ
JavaScript:
const char = '\u1682';
console.log(char); // Output: ᚂ
Java:
char c = '\u1682';
System.out.println(c); // Output: ᚂ
JSON:
{"text": "\u1682"} // Value: ᚂ
Python:
char = '\u1682'
print(char) # Output: ᚂ
Perl:
my $char = "\x{1682}";
print $char; # Output: ᚂ
PHP:
$char = "\x{1682}";
echo $char; // Output: ᚂ
Ruby:
char = "\u{1682}"
puts char # Output: ᚂ
Rust:
let c = '\u{1682}';
println!("{}", c); // Output: ᚂ
Go:
char := '\u1682'
fmt.Printf("%c\n", char) // Output: ᚂ
CSS:
/* CSS content property */
.element::before {
content: "\001682"; /* 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%82
MD5:
9d27f28f56c9768bff5b8381c438810d
SHA1:
0b51743b4063b12c07e4161f330e6e8f9f3f3f8a
Base64:
4ZqC