C:
char c = '\u5751';
printf("%c\n", c); // Output: 坑
JavaScript:
const char = '\u5751';
console.log(char); // Output: 坑
Java:
char c = '\u5751';
System.out.println(c); // Output: 坑
JSON:
{"text": "\u5751"} // Value: 坑
Python:
char = '\u5751'
print(char) # Output: 坑
Perl:
my $char = "\x{5751}";
print $char; # Output: 坑
PHP:
$char = "\x{5751}";
echo $char; // Output: 坑
Ruby:
char = "\u{5751}"
puts char # Output: 坑
Rust:
let c = '\u{5751}';
println!("{}", c); // Output: 坑
Go:
char := '\u5751'
fmt.Printf("%c\n", char) // Output: 坑
CSS:
/* CSS content property */
.element::before {
content: "\005751"; /* 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=%E5%9D%91
MD5:
bcb6e380f4acfca8f4f0186dbe008dd4
SHA1:
786d2af5912c2b7894c89f6b3f867aebc1847bac
Base64:
5Z2R