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