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