C:
char c = '\u8560';
printf("%c\n", c); // Output: 蕠
JavaScript:
const char = '\u8560';
console.log(char); // Output: 蕠
Java:
char c = '\u8560';
System.out.println(c); // Output: 蕠
JSON:
{"text": "\u8560"} // Value: 蕠
Python:
char = '\u8560'
print(char) # Output: 蕠
Perl:
my $char = "\x{8560}";
print $char; # Output: 蕠
PHP:
$char = "\x{8560}";
echo $char; // Output: 蕠
Ruby:
char = "\u{8560}"
puts char # Output: 蕠
Rust:
let c = '\u{8560}';
println!("{}", c); // Output: 蕠
Go:
char := '\u8560'
fmt.Printf("%c\n", char) // Output: 蕠
CSS:
/* CSS content property */
.element::before {
content: "\008560"; /* 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%95%A0
MD5:
c23bb6e56c306ad6f061f9f2ee3c67f8
SHA1:
722987211cd412fd2342bbe586236c87032bbaa8
Base64:
6JWg