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