C:
char c = '\uC027';
printf("%c\n", c); // Output: 쀧
JavaScript:
const char = '\uC027';
console.log(char); // Output: 쀧
Java:
char c = '\uC027';
System.out.println(c); // Output: 쀧
JSON:
{"text": "\uC027"} // Value: 쀧
Python:
char = '\uC027'
print(char) # Output: 쀧
Perl:
my $char = "\x{C027}";
print $char; # Output: 쀧
PHP:
$char = "\x{C027}";
echo $char; // Output: 쀧
Ruby:
char = "\u{C027}"
puts char # Output: 쀧
Rust:
let c = '\u{C027}';
println!("{}", c); // Output: 쀧
Go:
char := '\uC027'
fmt.Printf("%c\n", char) // Output: 쀧
CSS:
/* CSS content property */
.element::before {
content: "\00C027"; /* 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%80%A7
MD5:
22c85d6cddbcd8f6b194b56d61110bba
SHA1:
bb8b5f01826ee01377054841def84a344764e518
Base64:
7ICn