C:
char c = '\uC949';
printf("%c\n", c); // Output: 쥉
JavaScript:
const char = '\uC949';
console.log(char); // Output: 쥉
Java:
char c = '\uC949';
System.out.println(c); // Output: 쥉
JSON:
{"text": "\uC949"} // Value: 쥉
Python:
char = '\uC949'
print(char) # Output: 쥉
Perl:
my $char = "\x{C949}";
print $char; # Output: 쥉
PHP:
$char = "\x{C949}";
echo $char; // Output: 쥉
Ruby:
char = "\u{C949}"
puts char # Output: 쥉
Rust:
let c = '\u{C949}';
println!("{}", c); // Output: 쥉
Go:
char := '\uC949'
fmt.Printf("%c\n", char) // Output: 쥉
CSS:
/* CSS content property */
.element::before {
content: "\00C949"; /* 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%A5%89
MD5:
4dde494c78f8870f468182f4a50f4e9e
SHA1:
5a7854cf693429edbe03c6bcd182625ca1cb802d
Base64:
7KWJ