C:
char c = '\uC044';
printf("%c\n", c); // Output: 쁄
JavaScript:
const char = '\uC044';
console.log(char); // Output: 쁄
Java:
char c = '\uC044';
System.out.println(c); // Output: 쁄
JSON:
{"text": "\uC044"} // Value: 쁄
Python:
char = '\uC044'
print(char) # Output: 쁄
Perl:
my $char = "\x{C044}";
print $char; # Output: 쁄
PHP:
$char = "\x{C044}";
echo $char; // Output: 쁄
Ruby:
char = "\u{C044}"
puts char # Output: 쁄
Rust:
let c = '\u{C044}';
println!("{}", c); // Output: 쁄
Go:
char := '\uC044'
fmt.Printf("%c\n", char) // Output: 쁄
CSS:
/* CSS content property */
.element::before {
content: "\00C044"; /* 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%84
MD5:
589fdfc414e5a8beba91c1715e1ed51b
SHA1:
6b5a450c0b638a8fb1f64c8b8b578825c66988c4
Base64:
7IGE