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