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