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