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