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