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