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