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