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