C:
char c = '\uC206';
printf("%c\n", c); // Output: 숆
JavaScript:
const char = '\uC206';
console.log(char); // Output: 숆
Java:
char c = '\uC206';
System.out.println(c); // Output: 숆
JSON:
{"text": "\uC206"} // Value: 숆
Python:
char = '\uC206'
print(char) # Output: 숆
Perl:
my $char = "\x{C206}";
print $char; # Output: 숆
PHP:
$char = "\x{C206}";
echo $char; // Output: 숆
Ruby:
char = "\u{C206}"
puts char # Output: 숆
Rust:
let c = '\u{C206}';
println!("{}", c); // Output: 숆
Go:
char := '\uC206'
fmt.Printf("%c\n", char) // Output: 숆
CSS:
/* CSS content property */
.element::before {
content: "\00C206"; /* 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%88%86
MD5:
81b87ec8a14bb26660c9fb660342d267
SHA1:
852f6a1af7cfecbfe8b3ea0db70a825c2b32b188
Base64:
7IiG