C:
char c = '\uC95C';
printf("%c\n", c); // Output: 쥜
JavaScript:
const char = '\uC95C';
console.log(char); // Output: 쥜
Java:
char c = '\uC95C';
System.out.println(c); // Output: 쥜
JSON:
{"text": "\uC95C"} // Value: 쥜
Python:
char = '\uC95C'
print(char) # Output: 쥜
Perl:
my $char = "\x{C95C}";
print $char; # Output: 쥜
PHP:
$char = "\x{C95C}";
echo $char; // Output: 쥜
Ruby:
char = "\u{C95C}"
puts char # Output: 쥜
Rust:
let c = '\u{C95C}';
println!("{}", c); // Output: 쥜
Go:
char := '\uC95C'
fmt.Printf("%c\n", char) // Output: 쥜
CSS:
/* CSS content property */
.element::before {
content: "\00C95C"; /* 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%9C
MD5:
2d7cf2a9270fb630e738dbe79daec7aa
SHA1:
d77e96236ba57f418bf74a9ea42a875e8dbf5709
Base64:
7KWc