C:
char c = '\u6796';
printf("%c\n", c); // Output: 枖
JavaScript:
const char = '\u6796';
console.log(char); // Output: 枖
Java:
char c = '\u6796';
System.out.println(c); // Output: 枖
JSON:
{"text": "\u6796"} // Value: 枖
Python:
char = '\u6796'
print(char) # Output: 枖
Perl:
my $char = "\x{6796}";
print $char; # Output: 枖
PHP:
$char = "\x{6796}";
echo $char; // Output: 枖
Ruby:
char = "\u{6796}"
puts char # Output: 枖
Rust:
let c = '\u{6796}';
println!("{}", c); // Output: 枖
Go:
char := '\u6796'
fmt.Printf("%c\n", char) // Output: 枖
CSS:
/* CSS content property */
.element::before {
content: "\006796"; /* 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%96
MD5:
ddbab398159670803075e45230808dc3
SHA1:
8ca5201ae89de0229f31272a54fb636898ac2386
Base64:
5p6W