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