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