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