C:
char c = '\uC5E2';
printf("%c\n", c); // Output: 엢
JavaScript:
const char = '\uC5E2';
console.log(char); // Output: 엢
Java:
char c = '\uC5E2';
System.out.println(c); // Output: 엢
JSON:
{"text": "\uC5E2"} // Value: 엢
Python:
char = '\uC5E2'
print(char) # Output: 엢
Perl:
my $char = "\x{C5E2}";
print $char; # Output: 엢
PHP:
$char = "\x{C5E2}";
echo $char; // Output: 엢
Ruby:
char = "\u{C5E2}"
puts char # Output: 엢
Rust:
let c = '\u{C5E2}';
println!("{}", c); // Output: 엢
Go:
char := '\uC5E2'
fmt.Printf("%c\n", char) // Output: 엢
CSS:
/* CSS content property */
.element::before {
content: "\00C5E2"; /* 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%A2
MD5:
3a7025fa3b75ee0785ed413286a936a5
SHA1:
023710420afdb74b1cf6c197edc04a6ce0b635f1
Base64:
7Jei