C:
char c = '\u5382';
printf("%c\n", c); // Output: 厂
JavaScript:
const char = '\u5382';
console.log(char); // Output: 厂
Java:
char c = '\u5382';
System.out.println(c); // Output: 厂
JSON:
{"text": "\u5382"} // Value: 厂
Python:
char = '\u5382'
print(char) # Output: 厂
Perl:
my $char = "\x{5382}";
print $char; # Output: 厂
PHP:
$char = "\x{5382}";
echo $char; // Output: 厂
Ruby:
char = "\u{5382}"
puts char # Output: 厂
Rust:
let c = '\u{5382}';
println!("{}", c); // Output: 厂
Go:
char := '\u5382'
fmt.Printf("%c\n", char) // Output: 厂
CSS:
/* CSS content property */
.element::before {
content: "\005382"; /* 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%8E%82
MD5:
a7ea7ce5cd6132f37ab005ddc1239e9b
SHA1:
44d7d111295f93f5402b02dc8903e3101550bddf
Base64:
5Y6C