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