C:
char c = '\uC31A';
printf("%c\n", c); // Output: 쌚
JavaScript:
const char = '\uC31A';
console.log(char); // Output: 쌚
Java:
char c = '\uC31A';
System.out.println(c); // Output: 쌚
JSON:
{"text": "\uC31A"} // Value: 쌚
Python:
char = '\uC31A'
print(char) # Output: 쌚
Perl:
my $char = "\x{C31A}";
print $char; # Output: 쌚
PHP:
$char = "\x{C31A}";
echo $char; // Output: 쌚
Ruby:
char = "\u{C31A}"
puts char # Output: 쌚
Rust:
let c = '\u{C31A}';
println!("{}", c); // Output: 쌚
Go:
char := '\uC31A'
fmt.Printf("%c\n", char) // Output: 쌚
CSS:
/* CSS content property */
.element::before {
content: "\00C31A"; /* 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%9A
MD5:
7824a220ff798473d4aa25acfae9bf27
SHA1:
8299bb186195bfb5249d4c4648d121da68b2e997
Base64:
7Iya