C:
char c = '\u1688';
printf("%c\n", c); // Output: ᚈ
JavaScript:
const char = '\u1688';
console.log(char); // Output: ᚈ
Java:
char c = '\u1688';
System.out.println(c); // Output: ᚈ
JSON:
{"text": "\u1688"} // Value: ᚈ
Python:
char = '\u1688'
print(char) # Output: ᚈ
Perl:
my $char = "\x{1688}";
print $char; # Output: ᚈ
PHP:
$char = "\x{1688}";
echo $char; // Output: ᚈ
Ruby:
char = "\u{1688}"
puts char # Output: ᚈ
Rust:
let c = '\u{1688}';
println!("{}", c); // Output: ᚈ
Go:
char := '\u1688'
fmt.Printf("%c\n", char) // Output: ᚈ
CSS:
/* CSS content property */
.element::before {
content: "\001688"; /* 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%88
MD5:
37fcd6bc710fc6461e40e54182c0109a
SHA1:
cab741044493c70ff199ae0d683159c87781a1a8
Base64:
4ZqI