C:
char c = '\uCFAC';
printf("%c\n", c); // Output: 쾬
JavaScript:
const char = '\uCFAC';
console.log(char); // Output: 쾬
Java:
char c = '\uCFAC';
System.out.println(c); // Output: 쾬
JSON:
{"text": "\uCFAC"} // Value: 쾬
Python:
char = '\uCFAC'
print(char) # Output: 쾬
Perl:
my $char = "\x{CFAC}";
print $char; # Output: 쾬
PHP:
$char = "\x{CFAC}";
echo $char; // Output: 쾬
Ruby:
char = "\u{CFAC}"
puts char # Output: 쾬
Rust:
let c = '\u{CFAC}';
println!("{}", c); // Output: 쾬
Go:
char := '\uCFAC'
fmt.Printf("%c\n", char) // Output: 쾬
CSS:
/* CSS content property */
.element::before {
content: "\00CFAC"; /* 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%BE%AC
MD5:
99ccc212c6acd244293aab78440eaf5e
SHA1:
aa43a2105bb27219c478def7f09448ab4a19a168
Base64:
7L6s