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