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