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