C:
char c = '\u8504';
printf("%c\n", c); // Output: 蔄
JavaScript:
const char = '\u8504';
console.log(char); // Output: 蔄
Java:
char c = '\u8504';
System.out.println(c); // Output: 蔄
JSON:
{"text": "\u8504"} // Value: 蔄
Python:
char = '\u8504'
print(char) # Output: 蔄
Perl:
my $char = "\x{8504}";
print $char; # Output: 蔄
PHP:
$char = "\x{8504}";
echo $char; // Output: 蔄
Ruby:
char = "\u{8504}"
puts char # Output: 蔄
Rust:
let c = '\u{8504}';
println!("{}", c); // Output: 蔄
Go:
char := '\u8504'
fmt.Printf("%c\n", char) // Output: 蔄
CSS:
/* CSS content property */
.element::before {
content: "\008504"; /* 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%84
MD5:
a48abfb980d7a90ae008493298e60976
SHA1:
58fd2db2452d7b63e5e7963feb49c69aa6f70f20
Base64:
6JSE