C:
char c = '\u7513';
printf("%c\n", c); // Output: 甓
JavaScript:
const char = '\u7513';
console.log(char); // Output: 甓
Java:
char c = '\u7513';
System.out.println(c); // Output: 甓
JSON:
{"text": "\u7513"} // Value: 甓
Python:
char = '\u7513'
print(char) # Output: 甓
Perl:
my $char = "\x{7513}";
print $char; # Output: 甓
PHP:
$char = "\x{7513}";
echo $char; // Output: 甓
Ruby:
char = "\u{7513}"
puts char # Output: 甓
Rust:
let c = '\u{7513}';
println!("{}", c); // Output: 甓
Go:
char := '\u7513'
fmt.Printf("%c\n", char) // Output: 甓
CSS:
/* CSS content property */
.element::before {
content: "\007513"; /* 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=%E7%94%93
MD5:
727b96123c3d87ad6b646b89aa7814a4
SHA1:
9b414647801f0b1233493f618a75eaef933ad5ad
Base64:
55ST