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