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