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