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