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