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