C:
char c = '\u6746';
printf("%c\n", c); // Output: 杆
JavaScript:
const char = '\u6746';
console.log(char); // Output: 杆
Java:
char c = '\u6746';
System.out.println(c); // Output: 杆
JSON:
{"text": "\u6746"} // Value: 杆
Python:
char = '\u6746'
print(char) # Output: 杆
Perl:
my $char = "\x{6746}";
print $char; # Output: 杆
PHP:
$char = "\x{6746}";
echo $char; // Output: 杆
Ruby:
char = "\u{6746}"
puts char # Output: 杆
Rust:
let c = '\u{6746}';
println!("{}", c); // Output: 杆
Go:
char := '\u6746'
fmt.Printf("%c\n", char) // Output: 杆
CSS:
/* CSS content property */
.element::before {
content: "\006746"; /* 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%9D%86
MD5:
5e3545682b090a65a1d067027425971e
SHA1:
d4e9183d289347abca304df15293add21b78a5d4
Base64:
5p2G