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