C:
char c = '\u75FB';
printf("%c\n", c); // Output: 痻
JavaScript:
const char = '\u75FB';
console.log(char); // Output: 痻
Java:
char c = '\u75FB';
System.out.println(c); // Output: 痻
JSON:
{"text": "\u75FB"} // Value: 痻
Python:
char = '\u75FB'
print(char) # Output: 痻
Perl:
my $char = "\x{75FB}";
print $char; # Output: 痻
PHP:
$char = "\x{75FB}";
echo $char; // Output: 痻
Ruby:
char = "\u{75FB}"
puts char # Output: 痻
Rust:
let c = '\u{75FB}';
println!("{}", c); // Output: 痻
Go:
char := '\u75FB'
fmt.Printf("%c\n", char) // Output: 痻
CSS:
/* CSS content property */
.element::before {
content: "\0075FB"; /* 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%BB
MD5:
0094203b5befce3a6a3fd532ba30a327
SHA1:
a709e2288b22319730363d8a8e25e05dae445b5b
Base64:
55e7