C:
char c = '\uC861';
printf("%c\n", c); // Output: 졡
JavaScript:
const char = '\uC861';
console.log(char); // Output: 졡
Java:
char c = '\uC861';
System.out.println(c); // Output: 졡
JSON:
{"text": "\uC861"} // Value: 졡
Python:
char = '\uC861'
print(char) # Output: 졡
Perl:
my $char = "\x{C861}";
print $char; # Output: 졡
PHP:
$char = "\x{C861}";
echo $char; // Output: 졡
Ruby:
char = "\u{C861}"
puts char # Output: 졡
Rust:
let c = '\u{C861}';
println!("{}", c); // Output: 졡
Go:
char := '\uC861'
fmt.Printf("%c\n", char) // Output: 졡
CSS:
/* CSS content property */
.element::before {
content: "\00C861"; /* 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%A1%A1
MD5:
bb82b4a05f711dde1f17578f9e45f7b8
SHA1:
4067ed940b3ce4828cc2bfab6bd2ddddc699458f
Base64:
7KGh