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