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