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