C:
char c = '\u8494';
printf("%c\n", c); // Output: 蒔
JavaScript:
const char = '\u8494';
console.log(char); // Output: 蒔
Java:
char c = '\u8494';
System.out.println(c); // Output: 蒔
JSON:
{"text": "\u8494"} // Value: 蒔
Python:
char = '\u8494'
print(char) # Output: 蒔
Perl:
my $char = "\x{8494}";
print $char; # Output: 蒔
PHP:
$char = "\x{8494}";
echo $char; // Output: 蒔
Ruby:
char = "\u{8494}"
puts char # Output: 蒔
Rust:
let c = '\u{8494}';
println!("{}", c); // Output: 蒔
Go:
char := '\u8494'
fmt.Printf("%c\n", char) // Output: 蒔
CSS:
/* CSS content property */
.element::before {
content: "\008494"; /* 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%92%94
MD5:
72706414d9bcd11ba6350c3cdb266896
SHA1:
bb1e2381cd613e7b4c7263b4a75cd1b030c69625
Base64:
6JKU