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