C:
char c = '\uCFEC';
printf("%c\n", c); // Output: 쿬
JavaScript:
const char = '\uCFEC';
console.log(char); // Output: 쿬
Java:
char c = '\uCFEC';
System.out.println(c); // Output: 쿬
JSON:
{"text": "\uCFEC"} // Value: 쿬
Python:
char = '\uCFEC'
print(char) # Output: 쿬
Perl:
my $char = "\x{CFEC}";
print $char; # Output: 쿬
PHP:
$char = "\x{CFEC}";
echo $char; // Output: 쿬
Ruby:
char = "\u{CFEC}"
puts char # Output: 쿬
Rust:
let c = '\u{CFEC}';
println!("{}", c); // Output: 쿬
Go:
char := '\uCFEC'
fmt.Printf("%c\n", char) // Output: 쿬
CSS:
/* CSS content property */
.element::before {
content: "\00CFEC"; /* 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%AC
MD5:
3ef02538b3d9e08d4538238050bbde73
SHA1:
7249e2aaeade7daef305ae493f981cdd6cee8200
Base64:
7L+s