C:
char c = '\u58E0';
printf("%c\n", c); // Output: 壠
JavaScript:
const char = '\u58E0';
console.log(char); // Output: 壠
Java:
char c = '\u58E0';
System.out.println(c); // Output: 壠
JSON:
{"text": "\u58E0"} // Value: 壠
Python:
char = '\u58E0'
print(char) # Output: 壠
Perl:
my $char = "\x{58E0}";
print $char; # Output: 壠
PHP:
$char = "\x{58E0}";
echo $char; // Output: 壠
Ruby:
char = "\u{58E0}"
puts char # Output: 壠
Rust:
let c = '\u{58E0}';
println!("{}", c); // Output: 壠
Go:
char := '\u58E0'
fmt.Printf("%c\n", char) // Output: 壠
CSS:
/* CSS content property */
.element::before {
content: "\0058E0"; /* 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%A3%A0
MD5:
8f876a3dc2c98d713ae7d87b4ff3b25d
SHA1:
80729f9d2a7376b1eeb6c27d171de57f73d43c7c
Base64:
5aOg