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