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