C:
char c = '\u7CAA';
printf("%c\n", c); // Output: 粪
JavaScript:
const char = '\u7CAA';
console.log(char); // Output: 粪
Java:
char c = '\u7CAA';
System.out.println(c); // Output: 粪
JSON:
{"text": "\u7CAA"} // Value: 粪
Python:
char = '\u7CAA'
print(char) # Output: 粪
Perl:
my $char = "\x{7CAA}";
print $char; # Output: 粪
PHP:
$char = "\x{7CAA}";
echo $char; // Output: 粪
Ruby:
char = "\u{7CAA}"
puts char # Output: 粪
Rust:
let c = '\u{7CAA}';
println!("{}", c); // Output: 粪
Go:
char := '\u7CAA'
fmt.Printf("%c\n", char) // Output: 粪
CSS:
/* CSS content property */
.element::before {
content: "\007CAA"; /* 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%B2%AA
MD5:
11001ab5e71339b64877cc306bf485f6
SHA1:
c43f706be91fc5da0c8292af007543ca46243253
Base64:
57Kq