C:
char c = '\uCF64';
printf("%c\n", c); // Output: 콤
JavaScript:
const char = '\uCF64';
console.log(char); // Output: 콤
Java:
char c = '\uCF64';
System.out.println(c); // Output: 콤
JSON:
{"text": "\uCF64"} // Value: 콤
Python:
char = '\uCF64'
print(char) # Output: 콤
Perl:
my $char = "\x{CF64}";
print $char; # Output: 콤
PHP:
$char = "\x{CF64}";
echo $char; // Output: 콤
Ruby:
char = "\u{CF64}"
puts char # Output: 콤
Rust:
let c = '\u{CF64}';
println!("{}", c); // Output: 콤
Go:
char := '\uCF64'
fmt.Printf("%c\n", char) // Output: 콤
CSS:
/* CSS content property */
.element::before {
content: "\00CF64"; /* 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%A4
MD5:
a580cbb428be5bf12046f3d8d3f5f6e7
SHA1:
0474cff44fbb7cbd0adad6bb9e28d983657445a2
Base64:
7L2k