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