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