C:
char c = '\uC526';
printf("%c\n", c); // Output: 씦
JavaScript:
const char = '\uC526';
console.log(char); // Output: 씦
Java:
char c = '\uC526';
System.out.println(c); // Output: 씦
JSON:
{"text": "\uC526"} // Value: 씦
Python:
char = '\uC526'
print(char) # Output: 씦
Perl:
my $char = "\x{C526}";
print $char; # Output: 씦
PHP:
$char = "\x{C526}";
echo $char; // Output: 씦
Ruby:
char = "\u{C526}"
puts char # Output: 씦
Rust:
let c = '\u{C526}';
println!("{}", c); // Output: 씦
Go:
char := '\uC526'
fmt.Printf("%c\n", char) // Output: 씦
CSS:
/* CSS content property */
.element::before {
content: "\00C526"; /* 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%94%A6
MD5:
3d73502fdfb5e8c8f04ff06a173c9478
SHA1:
a31d790fd67a04226f892dcebb8e8f6f178bdb76
Base64:
7JSm