C:
char c = '\u8148';
printf("%c\n", c); // Output: 腈
JavaScript:
const char = '\u8148';
console.log(char); // Output: 腈
Java:
char c = '\u8148';
System.out.println(c); // Output: 腈
JSON:
{"text": "\u8148"} // Value: 腈
Python:
char = '\u8148'
print(char) # Output: 腈
Perl:
my $char = "\x{8148}";
print $char; # Output: 腈
PHP:
$char = "\x{8148}";
echo $char; // Output: 腈
Ruby:
char = "\u{8148}"
puts char # Output: 腈
Rust:
let c = '\u{8148}';
println!("{}", c); // Output: 腈
Go:
char := '\u8148'
fmt.Printf("%c\n", char) // Output: 腈
CSS:
/* CSS content property */
.element::before {
content: "\008148"; /* 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%88
MD5:
0b79eced6557a2df8c669b99b03aaec6
SHA1:
b46d146361d7dd25242548ff859402399b4abdf0
Base64:
6IWI