C:
char c = '\uA086';
printf("%c\n", c); // Output: ꂆ
JavaScript:
const char = '\uA086';
console.log(char); // Output: ꂆ
Java:
char c = '\uA086';
System.out.println(c); // Output: ꂆ
JSON:
{"text": "\uA086"} // Value: ꂆ
Python:
char = '\uA086'
print(char) # Output: ꂆ
Perl:
my $char = "\x{A086}";
print $char; # Output: ꂆ
PHP:
$char = "\x{A086}";
echo $char; // Output: ꂆ
Ruby:
char = "\u{A086}"
puts char # Output: ꂆ
Rust:
let c = '\u{A086}';
println!("{}", c); // Output: ꂆ
Go:
char := '\uA086'
fmt.Printf("%c\n", char) // Output: ꂆ
CSS:
/* CSS content property */
.element::before {
content: "\00A086"; /* 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%86
MD5:
28f2e1fd9d19f777e8fbff7a8a347aa7
SHA1:
bfc1c711ed9114801962420da8ecc6bc463572d0
Base64:
6oKG