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