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