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