C:
char c = '\u5504';
printf("%c\n", c); // Output: 唄
JavaScript:
const char = '\u5504';
console.log(char); // Output: 唄
Java:
char c = '\u5504';
System.out.println(c); // Output: 唄
JSON:
{"text": "\u5504"} // Value: 唄
Python:
char = '\u5504'
print(char) # Output: 唄
Perl:
my $char = "\x{5504}";
print $char; # Output: 唄
PHP:
$char = "\x{5504}";
echo $char; // Output: 唄
Ruby:
char = "\u{5504}"
puts char # Output: 唄
Rust:
let c = '\u{5504}';
println!("{}", c); // Output: 唄
Go:
char := '\u5504'
fmt.Printf("%c\n", char) // Output: 唄
CSS:
/* CSS content property */
.element::before {
content: "\005504"; /* 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%94%84
MD5:
0269c0cd9c86889d792fb2c5e743993c
SHA1:
433a869bec8b859bd7518d9e76099792508ec10b
Base64:
5ZSE