C:
char c = '\u5388';
printf("%c\n", c); // Output: 厈
JavaScript:
const char = '\u5388';
console.log(char); // Output: 厈
Java:
char c = '\u5388';
System.out.println(c); // Output: 厈
JSON:
{"text": "\u5388"} // Value: 厈
Python:
char = '\u5388'
print(char) # Output: 厈
Perl:
my $char = "\x{5388}";
print $char; # Output: 厈
PHP:
$char = "\x{5388}";
echo $char; // Output: 厈
Ruby:
char = "\u{5388}"
puts char # Output: 厈
Rust:
let c = '\u{5388}';
println!("{}", c); // Output: 厈
Go:
char := '\u5388'
fmt.Printf("%c\n", char) // Output: 厈
CSS:
/* CSS content property */
.element::before {
content: "\005388"; /* 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%88
MD5:
6705f4ff3ac24896502df15de4a40db0
SHA1:
1b7856f52060b7783a0eb8d5cb46fb268c35b7f6
Base64:
5Y6I