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