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