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