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