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