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