C:
char c = '\u6782';
printf("%c\n", c); // Output: 枂
JavaScript:
const char = '\u6782';
console.log(char); // Output: 枂
Java:
char c = '\u6782';
System.out.println(c); // Output: 枂
JSON:
{"text": "\u6782"} // Value: 枂
Python:
char = '\u6782'
print(char) # Output: 枂
Perl:
my $char = "\x{6782}";
print $char; # Output: 枂
PHP:
$char = "\x{6782}";
echo $char; // Output: 枂
Ruby:
char = "\u{6782}"
puts char # Output: 枂
Rust:
let c = '\u{6782}';
println!("{}", c); // Output: 枂
Go:
char := '\u6782'
fmt.Printf("%c\n", char) // Output: 枂
CSS:
/* CSS content property */
.element::before {
content: "\006782"; /* 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=%E6%9E%82
MD5:
8117ea8337022cf933be5005a47a62fc
SHA1:
a32b2a24f31d4781ecc8fcc3bad1b4f9fbdcf93a
Base64:
5p6C