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