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