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