C:
char c = '\uC28E';
printf("%c\n", c); // Output: 슎
JavaScript:
const char = '\uC28E';
console.log(char); // Output: 슎
Java:
char c = '\uC28E';
System.out.println(c); // Output: 슎
JSON:
{"text": "\uC28E"} // Value: 슎
Python:
char = '\uC28E'
print(char) # Output: 슎
Perl:
my $char = "\x{C28E}";
print $char; # Output: 슎
PHP:
$char = "\x{C28E}";
echo $char; // Output: 슎
Ruby:
char = "\u{C28E}"
puts char # Output: 슎
Rust:
let c = '\u{C28E}';
println!("{}", c); // Output: 슎
Go:
char := '\uC28E'
fmt.Printf("%c\n", char) // Output: 슎
CSS:
/* CSS content property */
.element::before {
content: "\00C28E"; /* 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%8A%8E
MD5:
12dcc6f03ec95057c97325c00a289e77
SHA1:
ee837c47fc3ee9abfcb5340def9ed4857f8d4196
Base64:
7IqO