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