C:
char c = '\uB8C7';
printf("%c\n", c); // Output: 룇
JavaScript:
const char = '\uB8C7';
console.log(char); // Output: 룇
Java:
char c = '\uB8C7';
System.out.println(c); // Output: 룇
JSON:
{"text": "\uB8C7"} // Value: 룇
Python:
char = '\uB8C7'
print(char) # Output: 룇
Perl:
my $char = "\x{B8C7}";
print $char; # Output: 룇
PHP:
$char = "\x{B8C7}";
echo $char; // Output: 룇
Ruby:
char = "\u{B8C7}"
puts char # Output: 룇
Rust:
let c = '\u{B8C7}';
println!("{}", c); // Output: 룇
Go:
char := '\uB8C7'
fmt.Printf("%c\n", char) // Output: 룇
CSS:
/* CSS content property */
.element::before {
content: "\00B8C7"; /* 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%A3%87
MD5:
fbdf98679f9fd969e1e74bf6bcb7d5a8
SHA1:
28be28e685005058f48114550545000c796d90eb
Base64:
66OH