C:
char c = '\u8532';
printf("%c\n", c); // Output: 蔲
JavaScript:
const char = '\u8532';
console.log(char); // Output: 蔲
Java:
char c = '\u8532';
System.out.println(c); // Output: 蔲
JSON:
{"text": "\u8532"} // Value: 蔲
Python:
char = '\u8532'
print(char) # Output: 蔲
Perl:
my $char = "\x{8532}";
print $char; # Output: 蔲
PHP:
$char = "\x{8532}";
echo $char; // Output: 蔲
Ruby:
char = "\u{8532}"
puts char # Output: 蔲
Rust:
let c = '\u{8532}';
println!("{}", c); // Output: 蔲
Go:
char := '\u8532'
fmt.Printf("%c\n", char) // Output: 蔲
CSS:
/* CSS content property */
.element::before {
content: "\008532"; /* 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%94%B2
MD5:
cad63941d8daf872817ed67def75b241
SHA1:
7270ed727e637c666207173fbe4a49c4c47e40ab
Base64:
6JSy