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