C:
char c = '\uCF3F';
printf("%c\n", c); // Output: 켿
JavaScript:
const char = '\uCF3F';
console.log(char); // Output: 켿
Java:
char c = '\uCF3F';
System.out.println(c); // Output: 켿
JSON:
{"text": "\uCF3F"} // Value: 켿
Python:
char = '\uCF3F'
print(char) # Output: 켿
Perl:
my $char = "\x{CF3F}";
print $char; # Output: 켿
PHP:
$char = "\x{CF3F}";
echo $char; // Output: 켿
Ruby:
char = "\u{CF3F}"
puts char # Output: 켿
Rust:
let c = '\u{CF3F}';
println!("{}", c); // Output: 켿
Go:
char := '\uCF3F'
fmt.Printf("%c\n", char) // Output: 켿
CSS:
/* CSS content property */
.element::before {
content: "\00CF3F"; /* 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=%EC%BC%BF
MD5:
d7369db96c8866ab276a3a1abcd2ce94
SHA1:
4d9113470bac57dc0968607d7bef2e4f76fc47bf
Base64:
7Ly/