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