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