C:
char c = '\uC7CA';
printf("%c\n", c); // Output: 쟊
JavaScript:
const char = '\uC7CA';
console.log(char); // Output: 쟊
Java:
char c = '\uC7CA';
System.out.println(c); // Output: 쟊
JSON:
{"text": "\uC7CA"} // Value: 쟊
Python:
char = '\uC7CA'
print(char) # Output: 쟊
Perl:
my $char = "\x{C7CA}";
print $char; # Output: 쟊
PHP:
$char = "\x{C7CA}";
echo $char; // Output: 쟊
Ruby:
char = "\u{C7CA}"
puts char # Output: 쟊
Rust:
let c = '\u{C7CA}';
println!("{}", c); // Output: 쟊
Go:
char := '\uC7CA'
fmt.Printf("%c\n", char) // Output: 쟊
CSS:
/* CSS content property */
.element::before {
content: "\00C7CA"; /* 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%8A
MD5:
fed91911e7c1c3d1bd56a8ad3ec7b28c
SHA1:
498b0b49416aa1a7d7c45a64d2289c0ca3250915
Base64:
7J+K