C:
char c = '\u5747';
printf("%c\n", c); // Output: 均
JavaScript:
const char = '\u5747';
console.log(char); // Output: 均
Java:
char c = '\u5747';
System.out.println(c); // Output: 均
JSON:
{"text": "\u5747"} // Value: 均
Python:
char = '\u5747'
print(char) # Output: 均
Perl:
my $char = "\x{5747}";
print $char; # Output: 均
PHP:
$char = "\x{5747}";
echo $char; // Output: 均
Ruby:
char = "\u{5747}"
puts char # Output: 均
Rust:
let c = '\u{5747}';
println!("{}", c); // Output: 均
Go:
char := '\u5747'
fmt.Printf("%c\n", char) // Output: 均
CSS:
/* CSS content property */
.element::before {
content: "\005747"; /* 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%9D%87
MD5:
bb55b8d1d0b0463b7b980b75c4f67f1a
SHA1:
8e602c9a8e5565bdb7d079f24ce036dd133686f8
Base64:
5Z2H