C:
char c = '\u75CB';
printf("%c\n", c); // Output: 痋
JavaScript:
const char = '\u75CB';
console.log(char); // Output: 痋
Java:
char c = '\u75CB';
System.out.println(c); // Output: 痋
JSON:
{"text": "\u75CB"} // Value: 痋
Python:
char = '\u75CB'
print(char) # Output: 痋
Perl:
my $char = "\x{75CB}";
print $char; # Output: 痋
PHP:
$char = "\x{75CB}";
echo $char; // Output: 痋
Ruby:
char = "\u{75CB}"
puts char # Output: 痋
Rust:
let c = '\u{75CB}';
println!("{}", c); // Output: 痋
Go:
char := '\u75CB'
fmt.Printf("%c\n", char) // Output: 痋
CSS:
/* CSS content property */
.element::before {
content: "\0075CB"; /* 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%97%8B
MD5:
3a06e120d16be2e92a33051f7229361d
SHA1:
4d22625f4734ab29c439d9c1979463ed111b5a48
Base64:
55eL