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