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