C:
char c = '\uCCD2';
printf("%c\n", c); // Output: 쳒
JavaScript:
const char = '\uCCD2';
console.log(char); // Output: 쳒
Java:
char c = '\uCCD2';
System.out.println(c); // Output: 쳒
JSON:
{"text": "\uCCD2"} // Value: 쳒
Python:
char = '\uCCD2'
print(char) # Output: 쳒
Perl:
my $char = "\x{CCD2}";
print $char; # Output: 쳒
PHP:
$char = "\x{CCD2}";
echo $char; // Output: 쳒
Ruby:
char = "\u{CCD2}"
puts char # Output: 쳒
Rust:
let c = '\u{CCD2}';
println!("{}", c); // Output: 쳒
Go:
char := '\uCCD2'
fmt.Printf("%c\n", char) // Output: 쳒
CSS:
/* CSS content property */
.element::before {
content: "\00CCD2"; /* 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%B3%92
MD5:
95620c0e0c54ce489649de4e28ee0225
SHA1:
37c1fd51f0903dce1d0e32cb89dd337173fb4d39
Base64:
7LOS