C:
char c = '\uC2EC';
printf("%c\n", c); // Output: 심
JavaScript:
const char = '\uC2EC';
console.log(char); // Output: 심
Java:
char c = '\uC2EC';
System.out.println(c); // Output: 심
JSON:
{"text": "\uC2EC"} // Value: 심
Python:
char = '\uC2EC'
print(char) # Output: 심
Perl:
my $char = "\x{C2EC}";
print $char; # Output: 심
PHP:
$char = "\x{C2EC}";
echo $char; // Output: 심
Ruby:
char = "\u{C2EC}"
puts char # Output: 심
Rust:
let c = '\u{C2EC}';
println!("{}", c); // Output: 심
Go:
char := '\uC2EC'
fmt.Printf("%c\n", char) // Output: 심
CSS:
/* CSS content property */
.element::before {
content: "\00C2EC"; /* 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%8B%AC
MD5:
fa7a85d0c76979af8186a561d307b981
SHA1:
db4d9242de639a3e8b29affbec641d131552a28c
Base64:
7Ius