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