C:
char c = '\u6870';
printf("%c\n", c); // Output: 桰
JavaScript:
const char = '\u6870';
console.log(char); // Output: 桰
Java:
char c = '\u6870';
System.out.println(c); // Output: 桰
JSON:
{"text": "\u6870"} // Value: 桰
Python:
char = '\u6870'
print(char) # Output: 桰
Perl:
my $char = "\x{6870}";
print $char; # Output: 桰
PHP:
$char = "\x{6870}";
echo $char; // Output: 桰
Ruby:
char = "\u{6870}"
puts char # Output: 桰
Rust:
let c = '\u{6870}';
println!("{}", c); // Output: 桰
Go:
char := '\u6870'
fmt.Printf("%c\n", char) // Output: 桰
CSS:
/* CSS content property */
.element::before {
content: "\006870"; /* 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%B0
MD5:
2fb4501079eaad74738eb26ec6650eda
SHA1:
7c7e0fe9610a637fa2ea57066d9fc887d3e459f7
Base64:
5qGw