C:
char c = '\uCB4D';
printf("%c\n", c); // Output: 쭍
JavaScript:
const char = '\uCB4D';
console.log(char); // Output: 쭍
Java:
char c = '\uCB4D';
System.out.println(c); // Output: 쭍
JSON:
{"text": "\uCB4D"} // Value: 쭍
Python:
char = '\uCB4D'
print(char) # Output: 쭍
Perl:
my $char = "\x{CB4D}";
print $char; # Output: 쭍
PHP:
$char = "\x{CB4D}";
echo $char; // Output: 쭍
Ruby:
char = "\u{CB4D}"
puts char # Output: 쭍
Rust:
let c = '\u{CB4D}';
println!("{}", c); // Output: 쭍
Go:
char := '\uCB4D'
fmt.Printf("%c\n", char) // Output: 쭍
CSS:
/* CSS content property */
.element::before {
content: "\00CB4D"; /* 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%AD%8D
MD5:
87a49feb601f08b20242cc402daefefd
SHA1:
0540890ff21d76593f4f378ad405191fe35fec12
Base64:
7K2N