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