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