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