C:
char c = '\u6871';
printf("%c\n", c); // Output: 桱
JavaScript:
const char = '\u6871';
console.log(char); // Output: 桱
Java:
char c = '\u6871';
System.out.println(c); // Output: 桱
JSON:
{"text": "\u6871"} // Value: 桱
Python:
char = '\u6871'
print(char) # Output: 桱
Perl:
my $char = "\x{6871}";
print $char; # Output: 桱
PHP:
$char = "\x{6871}";
echo $char; // Output: 桱
Ruby:
char = "\u{6871}"
puts char # Output: 桱
Rust:
let c = '\u{6871}';
println!("{}", c); // Output: 桱
Go:
char := '\u6871'
fmt.Printf("%c\n", char) // Output: 桱
CSS:
/* CSS content property */
.element::before {
content: "\006871"; /* 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%B1
MD5:
195487538aa596ce218753828349a516
SHA1:
ee8f6875d16b567e654bf6a06995f99399d8bea6
Base64:
5qGx