C:
char c = '\u5BBD';
printf("%c\n", c); // Output: 宽
JavaScript:
const char = '\u5BBD';
console.log(char); // Output: 宽
Java:
char c = '\u5BBD';
System.out.println(c); // Output: 宽
JSON:
{"text": "\u5BBD"} // Value: 宽
Python:
char = '\u5BBD'
print(char) # Output: 宽
Perl:
my $char = "\x{5BBD}";
print $char; # Output: 宽
PHP:
$char = "\x{5BBD}";
echo $char; // Output: 宽
Ruby:
char = "\u{5BBD}"
puts char # Output: 宽
Rust:
let c = '\u{5BBD}';
println!("{}", c); // Output: 宽
Go:
char := '\u5BBD'
fmt.Printf("%c\n", char) // Output: 宽
CSS:
/* CSS content property */
.element::before {
content: "\005BBD"; /* 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=%E5%AE%BD
MD5:
ea5a1c756cd31871f8528dd5225a8065
SHA1:
6395f44b735756d7f35572f190578d46817d045d
Base64:
5a69