C:
char c = '\uCFC8';
printf("%c\n", c); // Output: 쿈
JavaScript:
const char = '\uCFC8';
console.log(char); // Output: 쿈
Java:
char c = '\uCFC8';
System.out.println(c); // Output: 쿈
JSON:
{"text": "\uCFC8"} // Value: 쿈
Python:
char = '\uCFC8'
print(char) # Output: 쿈
Perl:
my $char = "\x{CFC8}";
print $char; # Output: 쿈
PHP:
$char = "\x{CFC8}";
echo $char; // Output: 쿈
Ruby:
char = "\u{CFC8}"
puts char # Output: 쿈
Rust:
let c = '\u{CFC8}';
println!("{}", c); // Output: 쿈
Go:
char := '\uCFC8'
fmt.Printf("%c\n", char) // Output: 쿈
CSS:
/* CSS content property */
.element::before {
content: "\00CFC8"; /* 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%88
MD5:
9dedf0441571f2650ff07bc53031314a
SHA1:
60d7454941c5c78254b2fc2c82b4a02fe9fa0f47
Base64:
7L+I