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