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