C:
char c = '\u1683';
printf("%c\n", c); // Output: ᚃ
JavaScript:
const char = '\u1683';
console.log(char); // Output: ᚃ
Java:
char c = '\u1683';
System.out.println(c); // Output: ᚃ
JSON:
{"text": "\u1683"} // Value: ᚃ
Python:
char = '\u1683'
print(char) # Output: ᚃ
Perl:
my $char = "\x{1683}";
print $char; # Output: ᚃ
PHP:
$char = "\x{1683}";
echo $char; // Output: ᚃ
Ruby:
char = "\u{1683}"
puts char # Output: ᚃ
Rust:
let c = '\u{1683}';
println!("{}", c); // Output: ᚃ
Go:
char := '\u1683'
fmt.Printf("%c\n", char) // Output: ᚃ
CSS:
/* CSS content property */
.element::before {
content: "\001683"; /* 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%83
MD5:
4c26744576a6364d9fcc177a68cc88a7
SHA1:
97b91bd54ff72b5272077386745d66177bd3bf58
Base64:
4ZqD