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