C:
char c = '\u9581';
printf("%c\n", c); // Output: 閁
JavaScript:
const char = '\u9581';
console.log(char); // Output: 閁
Java:
char c = '\u9581';
System.out.println(c); // Output: 閁
JSON:
{"text": "\u9581"} // Value: 閁
Python:
char = '\u9581'
print(char) # Output: 閁
Perl:
my $char = "\x{9581}";
print $char; # Output: 閁
PHP:
$char = "\x{9581}";
echo $char; // Output: 閁
Ruby:
char = "\u{9581}"
puts char # Output: 閁
Rust:
let c = '\u{9581}';
println!("{}", c); // Output: 閁
Go:
char := '\u9581'
fmt.Printf("%c\n", char) // Output: 閁
CSS:
/* CSS content property */
.element::before {
content: "\009581"; /* 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=%E9%96%81
MD5:
d8254e74741c086f4f8cc959504091c4
SHA1:
b828ca158d6b50b4cfd45ad61132106fc036a415
Base64:
6ZaB