C:
char c = '\uC863';
printf("%c\n", c); // Output: 졣
JavaScript:
const char = '\uC863';
console.log(char); // Output: 졣
Java:
char c = '\uC863';
System.out.println(c); // Output: 졣
JSON:
{"text": "\uC863"} // Value: 졣
Python:
char = '\uC863'
print(char) # Output: 졣
Perl:
my $char = "\x{C863}";
print $char; # Output: 졣
PHP:
$char = "\x{C863}";
echo $char; // Output: 졣
Ruby:
char = "\u{C863}"
puts char # Output: 졣
Rust:
let c = '\u{C863}';
println!("{}", c); // Output: 졣
Go:
char := '\uC863'
fmt.Printf("%c\n", char) // Output: 졣
CSS:
/* CSS content property */
.element::before {
content: "\00C863"; /* 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%A3
MD5:
34ae474512f1e9e1f19a1b8e50ceb424
SHA1:
29bea3614ad9f0416765ff2493ddbe06085dc622
Base64:
7KGj