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