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