C:
char c = '\u83DB';
printf("%c\n", c); // Output: 菛
JavaScript:
const char = '\u83DB';
console.log(char); // Output: 菛
Java:
char c = '\u83DB';
System.out.println(c); // Output: 菛
JSON:
{"text": "\u83DB"} // Value: 菛
Python:
char = '\u83DB'
print(char) # Output: 菛
Perl:
my $char = "\x{83DB}";
print $char; # Output: 菛
PHP:
$char = "\x{83DB}";
echo $char; // Output: 菛
Ruby:
char = "\u{83DB}"
puts char # Output: 菛
Rust:
let c = '\u{83DB}';
println!("{}", c); // Output: 菛
Go:
char := '\u83DB'
fmt.Printf("%c\n", char) // Output: 菛
CSS:
/* CSS content property */
.element::before {
content: "\0083DB"; /* 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=%E8%8F%9B
MD5:
c787c56dc5deea68fb7ff83c256ce5ae
SHA1:
085e898b7b5efeb81205d459713dd7223284e1f9
Base64:
6I+b