C:
char c = '\uCB4F';
printf("%c\n", c); // Output: 쭏
JavaScript:
const char = '\uCB4F';
console.log(char); // Output: 쭏
Java:
char c = '\uCB4F';
System.out.println(c); // Output: 쭏
JSON:
{"text": "\uCB4F"} // Value: 쭏
Python:
char = '\uCB4F'
print(char) # Output: 쭏
Perl:
my $char = "\x{CB4F}";
print $char; # Output: 쭏
PHP:
$char = "\x{CB4F}";
echo $char; // Output: 쭏
Ruby:
char = "\u{CB4F}"
puts char # Output: 쭏
Rust:
let c = '\u{CB4F}';
println!("{}", c); // Output: 쭏
Go:
char := '\uCB4F'
fmt.Printf("%c\n", char) // Output: 쭏
CSS:
/* CSS content property */
.element::before {
content: "\00CB4F"; /* 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%8F
MD5:
0bcf0eb9d97ba5dc7a7d8250462d6175
SHA1:
34a7c1716e9b5de50b49123c1ede559de61ea9bc
Base64:
7K2P