C:
char c = '\uC117';
printf("%c\n", c); // Output: 섗
JavaScript:
const char = '\uC117';
console.log(char); // Output: 섗
Java:
char c = '\uC117';
System.out.println(c); // Output: 섗
JSON:
{"text": "\uC117"} // Value: 섗
Python:
char = '\uC117'
print(char) # Output: 섗
Perl:
my $char = "\x{C117}";
print $char; # Output: 섗
PHP:
$char = "\x{C117}";
echo $char; // Output: 섗
Ruby:
char = "\u{C117}"
puts char # Output: 섗
Rust:
let c = '\u{C117}';
println!("{}", c); // Output: 섗
Go:
char := '\uC117'
fmt.Printf("%c\n", char) // Output: 섗
CSS:
/* CSS content property */
.element::before {
content: "\00C117"; /* 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%84%97
MD5:
48d1be09f9f4b38cc47f99336be81cf7
SHA1:
dd9b3814b568e0e8f05853e5e6c042b6d6bce52c
Base64:
7ISX