C:
char c = '\uC953';
printf("%c\n", c); // Output: 쥓
JavaScript:
const char = '\uC953';
console.log(char); // Output: 쥓
Java:
char c = '\uC953';
System.out.println(c); // Output: 쥓
JSON:
{"text": "\uC953"} // Value: 쥓
Python:
char = '\uC953'
print(char) # Output: 쥓
Perl:
my $char = "\x{C953}";
print $char; # Output: 쥓
PHP:
$char = "\x{C953}";
echo $char; // Output: 쥓
Ruby:
char = "\u{C953}"
puts char # Output: 쥓
Rust:
let c = '\u{C953}';
println!("{}", c); // Output: 쥓
Go:
char := '\uC953'
fmt.Printf("%c\n", char) // Output: 쥓
CSS:
/* CSS content property */
.element::before {
content: "\00C953"; /* 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%93
MD5:
47d462ff736256ceaeffec33845a358f
SHA1:
5871fae2ce92ee5f972947dad74af5203c2bd829
Base64:
7KWT