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