C:
char c = '\u5301';
printf("%c\n", c); // Output: 匁
JavaScript:
const char = '\u5301';
console.log(char); // Output: 匁
Java:
char c = '\u5301';
System.out.println(c); // Output: 匁
JSON:
{"text": "\u5301"} // Value: 匁
Python:
char = '\u5301'
print(char) # Output: 匁
Perl:
my $char = "\x{5301}";
print $char; # Output: 匁
PHP:
$char = "\x{5301}";
echo $char; // Output: 匁
Ruby:
char = "\u{5301}"
puts char # Output: 匁
Rust:
let c = '\u{5301}';
println!("{}", c); // Output: 匁
Go:
char := '\u5301'
fmt.Printf("%c\n", char) // Output: 匁
CSS:
/* CSS content property */
.element::before {
content: "\005301"; /* 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%81
MD5:
66eceee413d4eb398864a01d4eea4c3e
SHA1:
f0d73365eed2b9b91ce726abf0d8fd4c27d3e703
Base64:
5YyB