C:
char c = '\uA205';
printf("%c\n", c); // Output: ꈅ
JavaScript:
const char = '\uA205';
console.log(char); // Output: ꈅ
Java:
char c = '\uA205';
System.out.println(c); // Output: ꈅ
JSON:
{"text": "\uA205"} // Value: ꈅ
Python:
char = '\uA205'
print(char) # Output: ꈅ
Perl:
my $char = "\x{A205}";
print $char; # Output: ꈅ
PHP:
$char = "\x{A205}";
echo $char; // Output: ꈅ
Ruby:
char = "\u{A205}"
puts char # Output: ꈅ
Rust:
let c = '\u{A205}';
println!("{}", c); // Output: ꈅ
Go:
char := '\uA205'
fmt.Printf("%c\n", char) // Output: ꈅ
CSS:
/* CSS content property */
.element::before {
content: "\00A205"; /* 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%88%85
MD5:
3f1c2d9c40fa2685520e7eb7e1962c69
SHA1:
87cb4617e20bb1866204ca51ff5bc59e133084d4
Base64:
6oiF