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