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