C:
char c = '\uC94E';
printf("%c\n", c); // Output: 쥎
JavaScript:
const char = '\uC94E';
console.log(char); // Output: 쥎
Java:
char c = '\uC94E';
System.out.println(c); // Output: 쥎
JSON:
{"text": "\uC94E"} // Value: 쥎
Python:
char = '\uC94E'
print(char) # Output: 쥎
Perl:
my $char = "\x{C94E}";
print $char; # Output: 쥎
PHP:
$char = "\x{C94E}";
echo $char; // Output: 쥎
Ruby:
char = "\u{C94E}"
puts char # Output: 쥎
Rust:
let c = '\u{C94E}';
println!("{}", c); // Output: 쥎
Go:
char := '\uC94E'
fmt.Printf("%c\n", char) // Output: 쥎
CSS:
/* CSS content property */
.element::before {
content: "\00C94E"; /* 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%8E
MD5:
eb201aa1a0205c8a056a3e51ff7fd96e
SHA1:
04a020429f19c3bbb477fa7b57bcb7c429cbe7df
Base64:
7KWO