C:
char c = '\u5FA3';
printf("%c\n", c); // Output: 徣
JavaScript:
const char = '\u5FA3';
console.log(char); // Output: 徣
Java:
char c = '\u5FA3';
System.out.println(c); // Output: 徣
JSON:
{"text": "\u5FA3"} // Value: 徣
Python:
char = '\u5FA3'
print(char) # Output: 徣
Perl:
my $char = "\x{5FA3}";
print $char; # Output: 徣
PHP:
$char = "\x{5FA3}";
echo $char; // Output: 徣
Ruby:
char = "\u{5FA3}"
puts char # Output: 徣
Rust:
let c = '\u{5FA3}';
println!("{}", c); // Output: 徣
Go:
char := '\u5FA3'
fmt.Printf("%c\n", char) // Output: 徣
CSS:
/* CSS content property */
.element::before {
content: "\005FA3"; /* 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%A3
MD5:
ef9972aab72ef86b15d339a05f292121
SHA1:
11d0d8ed207adc25747c3906cb452e51d0c6b729
Base64:
5b6j