C:
char c = '\u8754';
printf("%c\n", c); // Output: 蝔
JavaScript:
const char = '\u8754';
console.log(char); // Output: 蝔
Java:
char c = '\u8754';
System.out.println(c); // Output: 蝔
JSON:
{"text": "\u8754"} // Value: 蝔
Python:
char = '\u8754'
print(char) # Output: 蝔
Perl:
my $char = "\x{8754}";
print $char; # Output: 蝔
PHP:
$char = "\x{8754}";
echo $char; // Output: 蝔
Ruby:
char = "\u{8754}"
puts char # Output: 蝔
Rust:
let c = '\u{8754}';
println!("{}", c); // Output: 蝔
Go:
char := '\u8754'
fmt.Printf("%c\n", char) // Output: 蝔
CSS:
/* CSS content property */
.element::before {
content: "\008754"; /* 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%9D%94
MD5:
418dfd0abf5c4fc02079314cd4aa8578
SHA1:
20391a07d539060dde6ed5f7c595896f583f099d
Base64:
6J2U