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