C:
char c = '\u83C4';
printf("%c\n", c); // Output: 菄
JavaScript:
const char = '\u83C4';
console.log(char); // Output: 菄
Java:
char c = '\u83C4';
System.out.println(c); // Output: 菄
JSON:
{"text": "\u83C4"} // Value: 菄
Python:
char = '\u83C4'
print(char) # Output: 菄
Perl:
my $char = "\x{83C4}";
print $char; # Output: 菄
PHP:
$char = "\x{83C4}";
echo $char; // Output: 菄
Ruby:
char = "\u{83C4}"
puts char # Output: 菄
Rust:
let c = '\u{83C4}';
println!("{}", c); // Output: 菄
Go:
char := '\u83C4'
fmt.Printf("%c\n", char) // Output: 菄
CSS:
/* CSS content property */
.element::before {
content: "\0083C4"; /* 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%8F%84
MD5:
298f82ef4564dd6b5c4ebc40b8943891
SHA1:
f8c19d805ba09ac6f833b6dd8ff098316d6173f9
Base64:
6I+E