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