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