C:
char c = '\uC0A7';
printf("%c\n", c); // Output: 삧
JavaScript:
const char = '\uC0A7';
console.log(char); // Output: 삧
Java:
char c = '\uC0A7';
System.out.println(c); // Output: 삧
JSON:
{"text": "\uC0A7"} // Value: 삧
Python:
char = '\uC0A7'
print(char) # Output: 삧
Perl:
my $char = "\x{C0A7}";
print $char; # Output: 삧
PHP:
$char = "\x{C0A7}";
echo $char; // Output: 삧
Ruby:
char = "\u{C0A7}"
puts char # Output: 삧
Rust:
let c = '\u{C0A7}';
println!("{}", c); // Output: 삧
Go:
char := '\uC0A7'
fmt.Printf("%c\n", char) // Output: 삧
CSS:
/* CSS content property */
.element::before {
content: "\00C0A7"; /* 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%82%A7
MD5:
8ebf445e8d9dd95ae6ac2614e6cea762
SHA1:
b0e1f639fb4ede0233a2212d30882d29de4af6a5
Base64:
7IKn