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