C:
char c = '\u5C41';
printf("%c\n", c); // Output: 屁
JavaScript:
const char = '\u5C41';
console.log(char); // Output: 屁
Java:
char c = '\u5C41';
System.out.println(c); // Output: 屁
JSON:
{"text": "\u5C41"} // Value: 屁
Python:
char = '\u5C41'
print(char) # Output: 屁
Perl:
my $char = "\x{5C41}";
print $char; # Output: 屁
PHP:
$char = "\x{5C41}";
echo $char; // Output: 屁
Ruby:
char = "\u{5C41}"
puts char # Output: 屁
Rust:
let c = '\u{5C41}';
println!("{}", c); // Output: 屁
Go:
char := '\u5C41'
fmt.Printf("%c\n", char) // Output: 屁
CSS:
/* CSS content property */
.element::before {
content: "\005C41"; /* 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%B1%81
MD5:
631697ae657fa85fef677ba5eabeee9b
SHA1:
97b155934ded948c43f831b2c7ebaf783aab0925
Base64:
5bGB