C:
char c = '\uCCAA';
printf("%c\n", c); // Output: 첪
JavaScript:
const char = '\uCCAA';
console.log(char); // Output: 첪
Java:
char c = '\uCCAA';
System.out.println(c); // Output: 첪
JSON:
{"text": "\uCCAA"} // Value: 첪
Python:
char = '\uCCAA'
print(char) # Output: 첪
Perl:
my $char = "\x{CCAA}";
print $char; # Output: 첪
PHP:
$char = "\x{CCAA}";
echo $char; // Output: 첪
Ruby:
char = "\u{CCAA}"
puts char # Output: 첪
Rust:
let c = '\u{CCAA}';
println!("{}", c); // Output: 첪
Go:
char := '\uCCAA'
fmt.Printf("%c\n", char) // Output: 첪
CSS:
/* CSS content property */
.element::before {
content: "\00CCAA"; /* 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%B2%AA
MD5:
30cfa83079b2590af6e499b2ba6ca785
SHA1:
8689ea3c283fd5b251461e006c29a3166b0843d0
Base64:
7LKq