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