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