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