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