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