C:
char c = '\uCA1D';
printf("%c\n", c); // Output: 쨝
JavaScript:
const char = '\uCA1D';
console.log(char); // Output: 쨝
Java:
char c = '\uCA1D';
System.out.println(c); // Output: 쨝
JSON:
{"text": "\uCA1D"} // Value: 쨝
Python:
char = '\uCA1D'
print(char) # Output: 쨝
Perl:
my $char = "\x{CA1D}";
print $char; # Output: 쨝
PHP:
$char = "\x{CA1D}";
echo $char; // Output: 쨝
Ruby:
char = "\u{CA1D}"
puts char # Output: 쨝
Rust:
let c = '\u{CA1D}';
println!("{}", c); // Output: 쨝
Go:
char := '\uCA1D'
fmt.Printf("%c\n", char) // Output: 쨝
CSS:
/* CSS content property */
.element::before {
content: "\00CA1D"; /* 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%9D
MD5:
745d1efee85fa140924b5fdb12861483
SHA1:
1114987a31388eb1682dd8dbeb703199c23681c9
Base64:
7Kid