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