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