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