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