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