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