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