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