C:
char c = '\u8172';
printf("%c\n", c); // Output: 腲
JavaScript:
const char = '\u8172';
console.log(char); // Output: 腲
Java:
char c = '\u8172';
System.out.println(c); // Output: 腲
JSON:
{"text": "\u8172"} // Value: 腲
Python:
char = '\u8172'
print(char) # Output: 腲
Perl:
my $char = "\x{8172}";
print $char; # Output: 腲
PHP:
$char = "\x{8172}";
echo $char; // Output: 腲
Ruby:
char = "\u{8172}"
puts char # Output: 腲
Rust:
let c = '\u{8172}';
println!("{}", c); // Output: 腲
Go:
char := '\u8172'
fmt.Printf("%c\n", char) // Output: 腲
CSS:
/* CSS content property */
.element::before {
content: "\008172"; /* 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%B2
MD5:
8f51e01a6245dbeb66f74cd5045e898a
SHA1:
4a097b5595fb6e20184001894a1b3985f0f11d03
Base64:
6IWy