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