C:
char c = '\uC473';
printf("%c\n", c); // Output: 쑳
JavaScript:
const char = '\uC473';
console.log(char); // Output: 쑳
Java:
char c = '\uC473';
System.out.println(c); // Output: 쑳
JSON:
{"text": "\uC473"} // Value: 쑳
Python:
char = '\uC473'
print(char) # Output: 쑳
Perl:
my $char = "\x{C473}";
print $char; # Output: 쑳
PHP:
$char = "\x{C473}";
echo $char; // Output: 쑳
Ruby:
char = "\u{C473}"
puts char # Output: 쑳
Rust:
let c = '\u{C473}';
println!("{}", c); // Output: 쑳
Go:
char := '\uC473'
fmt.Printf("%c\n", char) // Output: 쑳
CSS:
/* CSS content property */
.element::before {
content: "\00C473"; /* 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%91%B3
MD5:
a5d5a591277b0c7719f6f2d37f9e0a2e
SHA1:
cf01dc8d02c5f4e68921fdeebc936ece2a3fb2b4
Base64:
7JGz