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