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