C:
char c = '\u7826';
printf("%c\n", c); // Output: 砦
JavaScript:
const char = '\u7826';
console.log(char); // Output: 砦
Java:
char c = '\u7826';
System.out.println(c); // Output: 砦
JSON:
{"text": "\u7826"} // Value: 砦
Python:
char = '\u7826'
print(char) # Output: 砦
Perl:
my $char = "\x{7826}";
print $char; # Output: 砦
PHP:
$char = "\x{7826}";
echo $char; // Output: 砦
Ruby:
char = "\u{7826}"
puts char # Output: 砦
Rust:
let c = '\u{7826}';
println!("{}", c); // Output: 砦
Go:
char := '\u7826'
fmt.Printf("%c\n", char) // Output: 砦
CSS:
/* CSS content property */
.element::before {
content: "\007826"; /* 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%A6
MD5:
7c21112fb62d499db1076e3c10e1fd6c
SHA1:
b727048889dc0250737e83dc155ad468f50f591e
Base64:
56Cm