C:
char c = '\u783C';
printf("%c\n", c); // Output: 砼
JavaScript:
const char = '\u783C';
console.log(char); // Output: 砼
Java:
char c = '\u783C';
System.out.println(c); // Output: 砼
JSON:
{"text": "\u783C"} // Value: 砼
Python:
char = '\u783C'
print(char) # Output: 砼
Perl:
my $char = "\x{783C}";
print $char; # Output: 砼
PHP:
$char = "\x{783C}";
echo $char; // Output: 砼
Ruby:
char = "\u{783C}"
puts char # Output: 砼
Rust:
let c = '\u{783C}';
println!("{}", c); // Output: 砼
Go:
char := '\u783C'
fmt.Printf("%c\n", char) // Output: 砼
CSS:
/* CSS content property */
.element::before {
content: "\00783C"; /* 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%BC
MD5:
af442c081dacc09b8ddc4101e9591bb3
SHA1:
428746ff172a9f64eb4ca9e323019baeb46d9901
Base64:
56C8