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