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