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