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