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