C:
char c = '\u8143';
printf("%c\n", c); // Output: 腃
JavaScript:
const char = '\u8143';
console.log(char); // Output: 腃
Java:
char c = '\u8143';
System.out.println(c); // Output: 腃
JSON:
{"text": "\u8143"} // Value: 腃
Python:
char = '\u8143'
print(char) # Output: 腃
Perl:
my $char = "\x{8143}";
print $char; # Output: 腃
PHP:
$char = "\x{8143}";
echo $char; // Output: 腃
Ruby:
char = "\u{8143}"
puts char # Output: 腃
Rust:
let c = '\u{8143}';
println!("{}", c); // Output: 腃
Go:
char := '\u8143'
fmt.Printf("%c\n", char) // Output: 腃
CSS:
/* CSS content property */
.element::before {
content: "\008143"; /* 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%83
MD5:
b677f86ced43045f97b166113686eea4
SHA1:
9a5aa963c9c42e3523162afed853109ebef51c47
Base64:
6IWD