C:
char c = '\uC4C0';
printf("%c\n", c); // Output: 쓀
JavaScript:
const char = '\uC4C0';
console.log(char); // Output: 쓀
Java:
char c = '\uC4C0';
System.out.println(c); // Output: 쓀
JSON:
{"text": "\uC4C0"} // Value: 쓀
Python:
char = '\uC4C0'
print(char) # Output: 쓀
Perl:
my $char = "\x{C4C0}";
print $char; # Output: 쓀
PHP:
$char = "\x{C4C0}";
echo $char; // Output: 쓀
Ruby:
char = "\u{C4C0}"
puts char # Output: 쓀
Rust:
let c = '\u{C4C0}';
println!("{}", c); // Output: 쓀
Go:
char := '\uC4C0'
fmt.Printf("%c\n", char) // Output: 쓀
CSS:
/* CSS content property */
.element::before {
content: "\00C4C0"; /* 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%93%80
MD5:
600750bb94b61cfd4bdbceefcbb53ce4
SHA1:
7435e7248b281d7e6a184a6dd2e2817abe07e3ac
Base64:
7JOA