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