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