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