C:
char c = '\uCF53';
printf("%c\n", c); // Output: 콓
JavaScript:
const char = '\uCF53';
console.log(char); // Output: 콓
Java:
char c = '\uCF53';
System.out.println(c); // Output: 콓
JSON:
{"text": "\uCF53"} // Value: 콓
Python:
char = '\uCF53'
print(char) # Output: 콓
Perl:
my $char = "\x{CF53}";
print $char; # Output: 콓
PHP:
$char = "\x{CF53}";
echo $char; // Output: 콓
Ruby:
char = "\u{CF53}"
puts char # Output: 콓
Rust:
let c = '\u{CF53}';
println!("{}", c); // Output: 콓
Go:
char := '\uCF53'
fmt.Printf("%c\n", char) // Output: 콓
CSS:
/* CSS content property */
.element::before {
content: "\00CF53"; /* 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%93
MD5:
9ebfcb9ac0e1eba94480e32a4e2383fb
SHA1:
145cd0bee0bab4c16bcae91c1e3383f46c254f8a
Base64:
7L2T