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