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