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