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