C:
char c = '\u1698';
printf("%c\n", c); // Output: ᚘ
JavaScript:
const char = '\u1698';
console.log(char); // Output: ᚘ
Java:
char c = '\u1698';
System.out.println(c); // Output: ᚘ
JSON:
{"text": "\u1698"} // Value: ᚘ
Python:
char = '\u1698'
print(char) # Output: ᚘ
Perl:
my $char = "\x{1698}";
print $char; # Output: ᚘ
PHP:
$char = "\x{1698}";
echo $char; // Output: ᚘ
Ruby:
char = "\u{1698}"
puts char # Output: ᚘ
Rust:
let c = '\u{1698}';
println!("{}", c); // Output: ᚘ
Go:
char := '\u1698'
fmt.Printf("%c\n", char) // Output: ᚘ
CSS:
/* CSS content property */
.element::before {
content: "\001698"; /* 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%98
MD5:
10b288394199eb62f9386707e8109cef
SHA1:
63c592175f8caab59b15771e5daf2fa2ab60eff9
Base64:
4ZqY