C:
char c = '\uC5E1';
printf("%c\n", c); // Output: 엡
JavaScript:
const char = '\uC5E1';
console.log(char); // Output: 엡
Java:
char c = '\uC5E1';
System.out.println(c); // Output: 엡
JSON:
{"text": "\uC5E1"} // Value: 엡
Python:
char = '\uC5E1'
print(char) # Output: 엡
Perl:
my $char = "\x{C5E1}";
print $char; # Output: 엡
PHP:
$char = "\x{C5E1}";
echo $char; // Output: 엡
Ruby:
char = "\u{C5E1}"
puts char # Output: 엡
Rust:
let c = '\u{C5E1}';
println!("{}", c); // Output: 엡
Go:
char := '\uC5E1'
fmt.Printf("%c\n", char) // Output: 엡
CSS:
/* CSS content property */
.element::before {
content: "\00C5E1"; /* 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%97%A1
MD5:
43244bc09992b36aa636bf6bb0325602
SHA1:
c52498bb53039e4b290ae3dac0b8f4db2ccd87b2
Base64:
7Jeh