C:
char c = '\uCF55';
printf("%c\n", c); // Output: 콕
JavaScript:
const char = '\uCF55';
console.log(char); // Output: 콕
Java:
char c = '\uCF55';
System.out.println(c); // Output: 콕
JSON:
{"text": "\uCF55"} // Value: 콕
Python:
char = '\uCF55'
print(char) # Output: 콕
Perl:
my $char = "\x{CF55}";
print $char; # Output: 콕
PHP:
$char = "\x{CF55}";
echo $char; // Output: 콕
Ruby:
char = "\u{CF55}"
puts char # Output: 콕
Rust:
let c = '\u{CF55}';
println!("{}", c); // Output: 콕
Go:
char := '\uCF55'
fmt.Printf("%c\n", char) // Output: 콕
CSS:
/* CSS content property */
.element::before {
content: "\00CF55"; /* 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%BD%95
MD5:
59901e64392e88694d0ff7d7213003f3
SHA1:
3649e0de5c989ea76eb5298ce00c02f315afd230
Base64:
7L2V