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