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