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