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