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