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