C:
char c = '\u8173';
printf("%c\n", c); // Output: 腳
JavaScript:
const char = '\u8173';
console.log(char); // Output: 腳
Java:
char c = '\u8173';
System.out.println(c); // Output: 腳
JSON:
{"text": "\u8173"} // Value: 腳
Python:
char = '\u8173'
print(char) # Output: 腳
Perl:
my $char = "\x{8173}";
print $char; # Output: 腳
PHP:
$char = "\x{8173}";
echo $char; // Output: 腳
Ruby:
char = "\u{8173}"
puts char # Output: 腳
Rust:
let c = '\u{8173}';
println!("{}", c); // Output: 腳
Go:
char := '\u8173'
fmt.Printf("%c\n", char) // Output: 腳
CSS:
/* CSS content property */
.element::before {
content: "\008173"; /* 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%B3
MD5:
3ff6f46de2b50e9fd926ffc61741856f
SHA1:
85d67eb8b24cbd4ff6cd421a1fec8d668cbb7877
Base64:
6IWz