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