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