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