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