C:
char c = '\uA688';
printf("%c\n", c); // Output: Ꚉ
JavaScript:
const char = '\uA688';
console.log(char); // Output: Ꚉ
Java:
char c = '\uA688';
System.out.println(c); // Output: Ꚉ
JSON:
{"text": "\uA688"} // Value: Ꚉ
Python:
char = '\uA688'
print(char) # Output: Ꚉ
Perl:
my $char = "\x{A688}";
print $char; # Output: Ꚉ
PHP:
$char = "\x{A688}";
echo $char; // Output: Ꚉ
Ruby:
char = "\u{A688}"
puts char # Output: Ꚉ
Rust:
let c = '\u{A688}';
println!("{}", c); // Output: Ꚉ
Go:
char := '\uA688'
fmt.Printf("%c\n", char) // Output: Ꚉ
CSS:
/* CSS content property */
.element::before {
content: "\00A688"; /* 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=%EA%9A%88
MD5:
bfd38b914a7a21ee156b33f00f074fed
SHA1:
ee04eb0ca9fc7ce78798121fb0182788ca3cc4f3
Base64:
6pqI