C:
char c = '\u8684';
printf("%c\n", c); // Output: 蚄
JavaScript:
const char = '\u8684';
console.log(char); // Output: 蚄
Java:
char c = '\u8684';
System.out.println(c); // Output: 蚄
JSON:
{"text": "\u8684"} // Value: 蚄
Python:
char = '\u8684'
print(char) # Output: 蚄
Perl:
my $char = "\x{8684}";
print $char; # Output: 蚄
PHP:
$char = "\x{8684}";
echo $char; // Output: 蚄
Ruby:
char = "\u{8684}"
puts char # Output: 蚄
Rust:
let c = '\u{8684}';
println!("{}", c); // Output: 蚄
Go:
char := '\u8684'
fmt.Printf("%c\n", char) // Output: 蚄
CSS:
/* CSS content property */
.element::before {
content: "\008684"; /* 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%9A%84
MD5:
12adccca963ae6139e7bd0339101767a
SHA1:
369770cecfa98676a8539cac22db99014c75bbee
Base64:
6JqE