C:
char c = '\uC319';
printf("%c\n", c); // Output: 쌙
JavaScript:
const char = '\uC319';
console.log(char); // Output: 쌙
Java:
char c = '\uC319';
System.out.println(c); // Output: 쌙
JSON:
{"text": "\uC319"} // Value: 쌙
Python:
char = '\uC319'
print(char) # Output: 쌙
Perl:
my $char = "\x{C319}";
print $char; # Output: 쌙
PHP:
$char = "\x{C319}";
echo $char; // Output: 쌙
Ruby:
char = "\u{C319}"
puts char # Output: 쌙
Rust:
let c = '\u{C319}';
println!("{}", c); // Output: 쌙
Go:
char := '\uC319'
fmt.Printf("%c\n", char) // Output: 쌙
CSS:
/* CSS content property */
.element::before {
content: "\00C319"; /* 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%99
MD5:
103cf27e7b09fa466dfdb52e788e1c58
SHA1:
3498a9763bc9e13ad66e1ff467c6c9e46cf6734b
Base64:
7IyZ