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