C:
char c = '\u7816';
printf("%c\n", c); // Output: 砖
JavaScript:
const char = '\u7816';
console.log(char); // Output: 砖
Java:
char c = '\u7816';
System.out.println(c); // Output: 砖
JSON:
{"text": "\u7816"} // Value: 砖
Python:
char = '\u7816'
print(char) # Output: 砖
Perl:
my $char = "\x{7816}";
print $char; # Output: 砖
PHP:
$char = "\x{7816}";
echo $char; // Output: 砖
Ruby:
char = "\u{7816}"
puts char # Output: 砖
Rust:
let c = '\u{7816}';
println!("{}", c); // Output: 砖
Go:
char := '\u7816'
fmt.Printf("%c\n", char) // Output: 砖
CSS:
/* CSS content property */
.element::before {
content: "\007816"; /* 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%A0%96
MD5:
acc2b644a8b2e7ca3d0c99d3e654c16e
SHA1:
508632a35fc3875feb9bb7a1db1aa856aefdb920
Base64:
56CW