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