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