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