C:
char c = '\uCF0F';
printf("%c\n", c); // Output: 켏
JavaScript:
const char = '\uCF0F';
console.log(char); // Output: 켏
Java:
char c = '\uCF0F';
System.out.println(c); // Output: 켏
JSON:
{"text": "\uCF0F"} // Value: 켏
Python:
char = '\uCF0F'
print(char) # Output: 켏
Perl:
my $char = "\x{CF0F}";
print $char; # Output: 켏
PHP:
$char = "\x{CF0F}";
echo $char; // Output: 켏
Ruby:
char = "\u{CF0F}"
puts char # Output: 켏
Rust:
let c = '\u{CF0F}';
println!("{}", c); // Output: 켏
Go:
char := '\uCF0F'
fmt.Printf("%c\n", char) // Output: 켏
CSS:
/* CSS content property */
.element::before {
content: "\00CF0F"; /* 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%8F
MD5:
788c48aa66bbcfb30a50ed68b5c2989b
SHA1:
741cc34de5fab9140bbd060d8318935b7134bbea
Base64:
7LyP