C:
char c = '\uC7EC';
printf("%c\n", c); // Output: 쟬
JavaScript:
const char = '\uC7EC';
console.log(char); // Output: 쟬
Java:
char c = '\uC7EC';
System.out.println(c); // Output: 쟬
JSON:
{"text": "\uC7EC"} // Value: 쟬
Python:
char = '\uC7EC'
print(char) # Output: 쟬
Perl:
my $char = "\x{C7EC}";
print $char; # Output: 쟬
PHP:
$char = "\x{C7EC}";
echo $char; // Output: 쟬
Ruby:
char = "\u{C7EC}"
puts char # Output: 쟬
Rust:
let c = '\u{C7EC}';
println!("{}", c); // Output: 쟬
Go:
char := '\uC7EC'
fmt.Printf("%c\n", char) // Output: 쟬
CSS:
/* CSS content property */
.element::before {
content: "\00C7EC"; /* 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%9F%AC
MD5:
eca74f3e475fc4ba2a5cb53e47d67063
SHA1:
02d29391d800cc8b988085130821ff509bd284b2
Base64:
7J+s