C:
char c = '\uCADE';
printf("%c\n", c); // Output: 쫞
JavaScript:
const char = '\uCADE';
console.log(char); // Output: 쫞
Java:
char c = '\uCADE';
System.out.println(c); // Output: 쫞
JSON:
{"text": "\uCADE"} // Value: 쫞
Python:
char = '\uCADE'
print(char) # Output: 쫞
Perl:
my $char = "\x{CADE}";
print $char; # Output: 쫞
PHP:
$char = "\x{CADE}";
echo $char; // Output: 쫞
Ruby:
char = "\u{CADE}"
puts char # Output: 쫞
Rust:
let c = '\u{CADE}';
println!("{}", c); // Output: 쫞
Go:
char := '\uCADE'
fmt.Printf("%c\n", char) // Output: 쫞
CSS:
/* CSS content property */
.element::before {
content: "\00CADE"; /* 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%9E
MD5:
928ad1ca91221cb508d796628254331a
SHA1:
4bfecca5b7b7c81b88d5e9eefdba61784b56d66f
Base64:
7Kue