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