C:
char c = '\u7815';
printf("%c\n", c); // Output: 砕
JavaScript:
const char = '\u7815';
console.log(char); // Output: 砕
Java:
char c = '\u7815';
System.out.println(c); // Output: 砕
JSON:
{"text": "\u7815"} // Value: 砕
Python:
char = '\u7815'
print(char) # Output: 砕
Perl:
my $char = "\x{7815}";
print $char; # Output: 砕
PHP:
$char = "\x{7815}";
echo $char; // Output: 砕
Ruby:
char = "\u{7815}"
puts char # Output: 砕
Rust:
let c = '\u{7815}';
println!("{}", c); // Output: 砕
Go:
char := '\u7815'
fmt.Printf("%c\n", char) // Output: 砕
CSS:
/* CSS content property */
.element::before {
content: "\007815"; /* 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%95
MD5:
57d24ad4bff60f8f1e63697cad192200
SHA1:
de038f4cefdfc381bf5f02b199efee36420fcfd6
Base64:
56CV