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