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