C:
char c = '\uC43F';
printf("%c\n", c); // Output: 쐿
JavaScript:
const char = '\uC43F';
console.log(char); // Output: 쐿
Java:
char c = '\uC43F';
System.out.println(c); // Output: 쐿
JSON:
{"text": "\uC43F"} // Value: 쐿
Python:
char = '\uC43F'
print(char) # Output: 쐿
Perl:
my $char = "\x{C43F}";
print $char; # Output: 쐿
PHP:
$char = "\x{C43F}";
echo $char; // Output: 쐿
Ruby:
char = "\u{C43F}"
puts char # Output: 쐿
Rust:
let c = '\u{C43F}';
println!("{}", c); // Output: 쐿
Go:
char := '\uC43F'
fmt.Printf("%c\n", char) // Output: 쐿
CSS:
/* CSS content property */
.element::before {
content: "\00C43F"; /* 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%90%BF
MD5:
5f8a55ccbbe29d26b49d79d793f1d07f
SHA1:
e03a5a9b937bde6891abd7cbe1f8752c73c0a74a
Base64:
7JC/