C:
char c = '\u5E7E';
printf("%c\n", c); // Output: 幾
JavaScript:
const char = '\u5E7E';
console.log(char); // Output: 幾
Java:
char c = '\u5E7E';
System.out.println(c); // Output: 幾
JSON:
{"text": "\u5E7E"} // Value: 幾
Python:
char = '\u5E7E'
print(char) # Output: 幾
Perl:
my $char = "\x{5E7E}";
print $char; # Output: 幾
PHP:
$char = "\x{5E7E}";
echo $char; // Output: 幾
Ruby:
char = "\u{5E7E}"
puts char # Output: 幾
Rust:
let c = '\u{5E7E}';
println!("{}", c); // Output: 幾
Go:
char := '\u5E7E'
fmt.Printf("%c\n", char) // Output: 幾
CSS:
/* CSS content property */
.element::before {
content: "\005E7E"; /* 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%B9%BE
MD5:
16ec9b7259881d0b76be01acaad9a624
SHA1:
6030f0b0e4bc3473d29b2f8a2ce92e4bc82fb7db
Base64:
5bm+