C:
char c = '\u6785';
printf("%c\n", c); // Output: 枅
JavaScript:
const char = '\u6785';
console.log(char); // Output: 枅
Java:
char c = '\u6785';
System.out.println(c); // Output: 枅
JSON:
{"text": "\u6785"} // Value: 枅
Python:
char = '\u6785'
print(char) # Output: 枅
Perl:
my $char = "\x{6785}";
print $char; # Output: 枅
PHP:
$char = "\x{6785}";
echo $char; // Output: 枅
Ruby:
char = "\u{6785}"
puts char # Output: 枅
Rust:
let c = '\u{6785}';
println!("{}", c); // Output: 枅
Go:
char := '\u6785'
fmt.Printf("%c\n", char) // Output: 枅
CSS:
/* CSS content property */
.element::before {
content: "\006785"; /* 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%85
MD5:
f7e25614a157beff10f817a7bec5cabe
SHA1:
61e0bd72fd451c06c7a5b356cd97cf8c0a79632a
Base64:
5p6F