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