C:
char c = '\uBE4C';
printf("%c\n", c); // Output: 빌
JavaScript:
const char = '\uBE4C';
console.log(char); // Output: 빌
Java:
char c = '\uBE4C';
System.out.println(c); // Output: 빌
JSON:
{"text": "\uBE4C"} // Value: 빌
Python:
char = '\uBE4C'
print(char) # Output: 빌
Perl:
my $char = "\x{BE4C}";
print $char; # Output: 빌
PHP:
$char = "\x{BE4C}";
echo $char; // Output: 빌
Ruby:
char = "\u{BE4C}"
puts char # Output: 빌
Rust:
let c = '\u{BE4C}';
println!("{}", c); // Output: 빌
Go:
char := '\uBE4C'
fmt.Printf("%c\n", char) // Output: 빌
CSS:
/* CSS content property */
.element::before {
content: "\00BE4C"; /* 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=%EB%B9%8C
MD5:
79bcf36e131aa105d935da15843c293b
SHA1:
ea7cc9e0d8c6140a77f647cd960f26096b25a47d
Base64:
67mM