C:
char c = '\u5E6B';
printf("%c\n", c); // Output: 幫
JavaScript:
const char = '\u5E6B';
console.log(char); // Output: 幫
Java:
char c = '\u5E6B';
System.out.println(c); // Output: 幫
JSON:
{"text": "\u5E6B"} // Value: 幫
Python:
char = '\u5E6B'
print(char) # Output: 幫
Perl:
my $char = "\x{5E6B}";
print $char; # Output: 幫
PHP:
$char = "\x{5E6B}";
echo $char; // Output: 幫
Ruby:
char = "\u{5E6B}"
puts char # Output: 幫
Rust:
let c = '\u{5E6B}';
println!("{}", c); // Output: 幫
Go:
char := '\u5E6B'
fmt.Printf("%c\n", char) // Output: 幫
CSS:
/* CSS content property */
.element::before {
content: "\005E6B"; /* 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%AB
MD5:
09a088618621430d871fb11788360868
SHA1:
b2febf92b29d4483455927b622e8dad706280c21
Base64:
5bmr