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