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