C:
char c = '\u5FB8';
printf("%c\n", c); // Output: 徸
JavaScript:
const char = '\u5FB8';
console.log(char); // Output: 徸
Java:
char c = '\u5FB8';
System.out.println(c); // Output: 徸
JSON:
{"text": "\u5FB8"} // Value: 徸
Python:
char = '\u5FB8'
print(char) # Output: 徸
Perl:
my $char = "\x{5FB8}";
print $char; # Output: 徸
PHP:
$char = "\x{5FB8}";
echo $char; // Output: 徸
Ruby:
char = "\u{5FB8}"
puts char # Output: 徸
Rust:
let c = '\u{5FB8}';
println!("{}", c); // Output: 徸
Go:
char := '\u5FB8'
fmt.Printf("%c\n", char) // Output: 徸
CSS:
/* CSS content property */
.element::before {
content: "\005FB8"; /* 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%BE%B8
MD5:
53e91cf7bf6940abcc84f8f1b4a07ad9
SHA1:
041d0e6ef077c7b04d726490ed90501feab7b787
Base64:
5b64