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