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