C:
char c = '\uC955';
printf("%c\n", c); // Output: 쥕
JavaScript:
const char = '\uC955';
console.log(char); // Output: 쥕
Java:
char c = '\uC955';
System.out.println(c); // Output: 쥕
JSON:
{"text": "\uC955"} // Value: 쥕
Python:
char = '\uC955'
print(char) # Output: 쥕
Perl:
my $char = "\x{C955}";
print $char; # Output: 쥕
PHP:
$char = "\x{C955}";
echo $char; // Output: 쥕
Ruby:
char = "\u{C955}"
puts char # Output: 쥕
Rust:
let c = '\u{C955}';
println!("{}", c); // Output: 쥕
Go:
char := '\uC955'
fmt.Printf("%c\n", char) // Output: 쥕
CSS:
/* CSS content property */
.element::before {
content: "\00C955"; /* 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%95
MD5:
486f19ec748b0cab1932c475c7cd6315
SHA1:
98ffa7e7ed0de2ef0971c3970809269462c046d9
Base64:
7KWV