C:
char c = '\uCFC0';
printf("%c\n", c); // Output: 쿀
JavaScript:
const char = '\uCFC0';
console.log(char); // Output: 쿀
Java:
char c = '\uCFC0';
System.out.println(c); // Output: 쿀
JSON:
{"text": "\uCFC0"} // Value: 쿀
Python:
char = '\uCFC0'
print(char) # Output: 쿀
Perl:
my $char = "\x{CFC0}";
print $char; # Output: 쿀
PHP:
$char = "\x{CFC0}";
echo $char; // Output: 쿀
Ruby:
char = "\u{CFC0}"
puts char # Output: 쿀
Rust:
let c = '\u{CFC0}';
println!("{}", c); // Output: 쿀
Go:
char := '\uCFC0'
fmt.Printf("%c\n", char) // Output: 쿀
CSS:
/* CSS content property */
.element::before {
content: "\00CFC0"; /* 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%BF%80
MD5:
6c71cf5b8c892e9b6c77b8bf26edc2a8
SHA1:
6af01c3297a01359ece8c49eb8c7c95ff94fff39
Base64:
7L+A