C:
char c = '\u8573';
printf("%c\n", c); // Output: 蕳
JavaScript:
const char = '\u8573';
console.log(char); // Output: 蕳
Java:
char c = '\u8573';
System.out.println(c); // Output: 蕳
JSON:
{"text": "\u8573"} // Value: 蕳
Python:
char = '\u8573'
print(char) # Output: 蕳
Perl:
my $char = "\x{8573}";
print $char; # Output: 蕳
PHP:
$char = "\x{8573}";
echo $char; // Output: 蕳
Ruby:
char = "\u{8573}"
puts char # Output: 蕳
Rust:
let c = '\u{8573}';
println!("{}", c); // Output: 蕳
Go:
char := '\u8573'
fmt.Printf("%c\n", char) // Output: 蕳
CSS:
/* CSS content property */
.element::before {
content: "\008573"; /* 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%B3
MD5:
6a5621c48300aeecc4666bb908b4ebd5
SHA1:
7559bfdac4cd06400ad0881ea381e41e6784ea5a
Base64:
6JWz