C:
char c = '\u6783';
printf("%c\n", c); // Output: 枃
JavaScript:
const char = '\u6783';
console.log(char); // Output: 枃
Java:
char c = '\u6783';
System.out.println(c); // Output: 枃
JSON:
{"text": "\u6783"} // Value: 枃
Python:
char = '\u6783'
print(char) # Output: 枃
Perl:
my $char = "\x{6783}";
print $char; # Output: 枃
PHP:
$char = "\x{6783}";
echo $char; // Output: 枃
Ruby:
char = "\u{6783}"
puts char # Output: 枃
Rust:
let c = '\u{6783}';
println!("{}", c); // Output: 枃
Go:
char := '\u6783'
fmt.Printf("%c\n", char) // Output: 枃
CSS:
/* CSS content property */
.element::before {
content: "\006783"; /* 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%83
MD5:
cc5b30f1f16e235943103e07f74e4502
SHA1:
995a336b7b227b53076ef21b2b9a324970d89e9e
Base64:
5p6D