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