C:
char c = '\u8153';
printf("%c\n", c); // Output: 腓
JavaScript:
const char = '\u8153';
console.log(char); // Output: 腓
Java:
char c = '\u8153';
System.out.println(c); // Output: 腓
JSON:
{"text": "\u8153"} // Value: 腓
Python:
char = '\u8153'
print(char) # Output: 腓
Perl:
my $char = "\x{8153}";
print $char; # Output: 腓
PHP:
$char = "\x{8153}";
echo $char; // Output: 腓
Ruby:
char = "\u{8153}"
puts char # Output: 腓
Rust:
let c = '\u{8153}';
println!("{}", c); // Output: 腓
Go:
char := '\u8153'
fmt.Printf("%c\n", char) // Output: 腓
CSS:
/* CSS content property */
.element::before {
content: "\008153"; /* 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=%E8%85%93
MD5:
79257a512eea1189839b79a2b2e0d87f
SHA1:
a15ac2aa25e4279965b797283a40acd302fcdfb3
Base64:
6IWT