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