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