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