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