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