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