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