C:
char c = '\u6787';
printf("%c\n", c); // Output: 枇
JavaScript:
const char = '\u6787';
console.log(char); // Output: 枇
Java:
char c = '\u6787';
System.out.println(c); // Output: 枇
JSON:
{"text": "\u6787"} // Value: 枇
Python:
char = '\u6787'
print(char) # Output: 枇
Perl:
my $char = "\x{6787}";
print $char; # Output: 枇
PHP:
$char = "\x{6787}";
echo $char; // Output: 枇
Ruby:
char = "\u{6787}"
puts char # Output: 枇
Rust:
let c = '\u{6787}';
println!("{}", c); // Output: 枇
Go:
char := '\u6787'
fmt.Printf("%c\n", char) // Output: 枇
CSS:
/* CSS content property */
.element::before {
content: "\006787"; /* 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%87
MD5:
1423fc7215427db9cedff07601dfdfac
SHA1:
9377e1e3cb653ed0c374fd0fa8b43092c1aa7d53
Base64:
5p6H