C:
char c = '\uA28B';
printf("%c\n", c); // Output: ꊋ
JavaScript:
const char = '\uA28B';
console.log(char); // Output: ꊋ
Java:
char c = '\uA28B';
System.out.println(c); // Output: ꊋ
JSON:
{"text": "\uA28B"} // Value: ꊋ
Python:
char = '\uA28B'
print(char) # Output: ꊋ
Perl:
my $char = "\x{A28B}";
print $char; # Output: ꊋ
PHP:
$char = "\x{A28B}";
echo $char; // Output: ꊋ
Ruby:
char = "\u{A28B}"
puts char # Output: ꊋ
Rust:
let c = '\u{A28B}';
println!("{}", c); // Output: ꊋ
Go:
char := '\uA28B'
fmt.Printf("%c\n", char) // Output: ꊋ
CSS:
/* CSS content property */
.element::before {
content: "\00A28B"; /* 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%8A%8B
MD5:
e8f7b884dd204efecfcf5bcf97707e3a
SHA1:
030dd5eea591a451abf561f8704a17b69fd30656
Base64:
6oqL