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