C:
char c = '\uCCEB';
printf("%c\n", c); // Output: 쳫
JavaScript:
const char = '\uCCEB';
console.log(char); // Output: 쳫
Java:
char c = '\uCCEB';
System.out.println(c); // Output: 쳫
JSON:
{"text": "\uCCEB"} // Value: 쳫
Python:
char = '\uCCEB'
print(char) # Output: 쳫
Perl:
my $char = "\x{CCEB}";
print $char; # Output: 쳫
PHP:
$char = "\x{CCEB}";
echo $char; // Output: 쳫
Ruby:
char = "\u{CCEB}"
puts char # Output: 쳫
Rust:
let c = '\u{CCEB}';
println!("{}", c); // Output: 쳫
Go:
char := '\uCCEB'
fmt.Printf("%c\n", char) // Output: 쳫
CSS:
/* CSS content property */
.element::before {
content: "\00CCEB"; /* 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%B3%AB
MD5:
9d865dab30c34d4b611c917f7aa9f0d1
SHA1:
8f1907735f7b21deeee677109179301aef5bccad
Base64:
7LOr