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