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