C:
char c = '\u6868';
printf("%c\n", c); // Output: 桨
JavaScript:
const char = '\u6868';
console.log(char); // Output: 桨
Java:
char c = '\u6868';
System.out.println(c); // Output: 桨
JSON:
{"text": "\u6868"} // Value: 桨
Python:
char = '\u6868'
print(char) # Output: 桨
Perl:
my $char = "\x{6868}";
print $char; # Output: 桨
PHP:
$char = "\x{6868}";
echo $char; // Output: 桨
Ruby:
char = "\u{6868}"
puts char # Output: 桨
Rust:
let c = '\u{6868}';
println!("{}", c); // Output: 桨
Go:
char := '\u6868'
fmt.Printf("%c\n", char) // Output: 桨
CSS:
/* CSS content property */
.element::before {
content: "\006868"; /* 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%A1%A8
MD5:
328b4947d82b78ef685b5aace1ce82b0
SHA1:
e7a837e7a17c2e35ae7f2c6e6345230f1dc4e91e
Base64:
5qGo