C:
char c = '\uCCFF';
printf("%c\n", c); // Output: 쳿
JavaScript:
const char = '\uCCFF';
console.log(char); // Output: 쳿
Java:
char c = '\uCCFF';
System.out.println(c); // Output: 쳿
JSON:
{"text": "\uCCFF"} // Value: 쳿
Python:
char = '\uCCFF'
print(char) # Output: 쳿
Perl:
my $char = "\x{CCFF}";
print $char; # Output: 쳿
PHP:
$char = "\x{CCFF}";
echo $char; // Output: 쳿
Ruby:
char = "\u{CCFF}"
puts char # Output: 쳿
Rust:
let c = '\u{CCFF}';
println!("{}", c); // Output: 쳿
Go:
char := '\uCCFF'
fmt.Printf("%c\n", char) // Output: 쳿
CSS:
/* CSS content property */
.element::before {
content: "\00CCFF"; /* 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%BF
MD5:
8fe6757f2a275b29089649ebb634e551
SHA1:
748f0e478b955e3ce020d2e916eb76094b6ee15b
Base64:
7LO/