C:
char c = '\u832F';
printf("%c\n", c); // Output: 茯
JavaScript:
const char = '\u832F';
console.log(char); // Output: 茯
Java:
char c = '\u832F';
System.out.println(c); // Output: 茯
JSON:
{"text": "\u832F"} // Value: 茯
Python:
char = '\u832F'
print(char) # Output: 茯
Perl:
my $char = "\x{832F}";
print $char; # Output: 茯
PHP:
$char = "\x{832F}";
echo $char; // Output: 茯
Ruby:
char = "\u{832F}"
puts char # Output: 茯
Rust:
let c = '\u{832F}';
println!("{}", c); // Output: 茯
Go:
char := '\u832F'
fmt.Printf("%c\n", char) // Output: 茯
CSS:
/* CSS content property */
.element::before {
content: "\00832F"; /* 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%8C%AF
MD5:
44e056fc88e76751e99eb69be1ef0ff8
SHA1:
63328b3f63e73b91a2a4182e9d4cece179a17cfe
Base64:
6Iyv