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