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