C:
char c = '\u6869';
printf("%c\n", c); // Output: 桩
JavaScript:
const char = '\u6869';
console.log(char); // Output: 桩
Java:
char c = '\u6869';
System.out.println(c); // Output: 桩
JSON:
{"text": "\u6869"} // Value: 桩
Python:
char = '\u6869'
print(char) # Output: 桩
Perl:
my $char = "\x{6869}";
print $char; # Output: 桩
PHP:
$char = "\x{6869}";
echo $char; // Output: 桩
Ruby:
char = "\u{6869}"
puts char # Output: 桩
Rust:
let c = '\u{6869}';
println!("{}", c); // Output: 桩
Go:
char := '\u6869'
fmt.Printf("%c\n", char) // Output: 桩
CSS:
/* CSS content property */
.element::before {
content: "\006869"; /* 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%A9
MD5:
1458d2d98372e7f23918686751e04b54
SHA1:
ce9c8a3227554214e6fac9edfa3938cbad311bb3
Base64:
5qGp