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