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