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