C:
char c = '\u1699';
printf("%c\n", c); // Output: ᚙ
JavaScript:
const char = '\u1699';
console.log(char); // Output: ᚙ
Java:
char c = '\u1699';
System.out.println(c); // Output: ᚙ
JSON:
{"text": "\u1699"} // Value: ᚙ
Python:
char = '\u1699'
print(char) # Output: ᚙ
Perl:
my $char = "\x{1699}";
print $char; # Output: ᚙ
PHP:
$char = "\x{1699}";
echo $char; // Output: ᚙ
Ruby:
char = "\u{1699}"
puts char # Output: ᚙ
Rust:
let c = '\u{1699}';
println!("{}", c); // Output: ᚙ
Go:
char := '\u1699'
fmt.Printf("%c\n", char) // Output: ᚙ
CSS:
/* CSS content property */
.element::before {
content: "\001699"; /* 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%99
MD5:
c0b6203cf4429674b7437eb18c41aceb
SHA1:
578e557ce4bfbae64dd6f80848c6d4715e5a4ad6
Base64:
4ZqZ