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