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