C:
char c = '\u91CF';
printf("%c\n", c); // Output: 量
JavaScript:
const char = '\u91CF';
console.log(char); // Output: 量
Java:
char c = '\u91CF';
System.out.println(c); // Output: 量
JSON:
{"text": "\u91CF"} // Value: 量
Python:
char = '\u91CF'
print(char) # Output: 量
Perl:
my $char = "\x{91CF}";
print $char; # Output: 量
PHP:
$char = "\x{91CF}";
echo $char; // Output: 量
Ruby:
char = "\u{91CF}"
puts char # Output: 量
Rust:
let c = '\u{91CF}';
println!("{}", c); // Output: 量
Go:
char := '\u91CF'
fmt.Printf("%c\n", char) // Output: 量
CSS:
/* CSS content property */
.element::before {
content: "\0091CF"; /* 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%87%8F
MD5:
2da16149fb7e7f0e4c0934da381a30c7
SHA1:
26f331a3240983d04e1b2efc9d02854d1d232f24
Base64:
6YeP