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