C:
char c = '\u83E4';
printf("%c\n", c); // Output: 菤
JavaScript:
const char = '\u83E4';
console.log(char); // Output: 菤
Java:
char c = '\u83E4';
System.out.println(c); // Output: 菤
JSON:
{"text": "\u83E4"} // Value: 菤
Python:
char = '\u83E4'
print(char) # Output: 菤
Perl:
my $char = "\x{83E4}";
print $char; # Output: 菤
PHP:
$char = "\x{83E4}";
echo $char; // Output: 菤
Ruby:
char = "\u{83E4}"
puts char # Output: 菤
Rust:
let c = '\u{83E4}';
println!("{}", c); // Output: 菤
Go:
char := '\u83E4'
fmt.Printf("%c\n", char) // Output: 菤
CSS:
/* CSS content property */
.element::before {
content: "\0083E4"; /* 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%A4
MD5:
ebfd3873e3035c68c78a1544bb2dc2d7
SHA1:
538e763dc88f79fc79035d609f86934197c28270
Base64:
6I+k