C:
char c = '\u5320';
printf("%c\n", c); // Output: 匠
JavaScript:
const char = '\u5320';
console.log(char); // Output: 匠
Java:
char c = '\u5320';
System.out.println(c); // Output: 匠
JSON:
{"text": "\u5320"} // Value: 匠
Python:
char = '\u5320'
print(char) # Output: 匠
Perl:
my $char = "\x{5320}";
print $char; # Output: 匠
PHP:
$char = "\x{5320}";
echo $char; // Output: 匠
Ruby:
char = "\u{5320}"
puts char # Output: 匠
Rust:
let c = '\u{5320}';
println!("{}", c); // Output: 匠
Go:
char := '\u5320'
fmt.Printf("%c\n", char) // Output: 匠
CSS:
/* CSS content property */
.element::before {
content: "\005320"; /* 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%8C%A0
MD5:
8f735971a47afe1ed7fa4174f081767d
SHA1:
414f66c99ba17d16d42a7151e73b5b977d2f55ed
Base64:
5Yyg