C:
char c = '\u6810';
printf("%c\n", c); // Output: 栐
JavaScript:
const char = '\u6810';
console.log(char); // Output: 栐
Java:
char c = '\u6810';
System.out.println(c); // Output: 栐
JSON:
{"text": "\u6810"} // Value: 栐
Python:
char = '\u6810'
print(char) # Output: 栐
Perl:
my $char = "\x{6810}";
print $char; # Output: 栐
PHP:
$char = "\x{6810}";
echo $char; // Output: 栐
Ruby:
char = "\u{6810}"
puts char # Output: 栐
Rust:
let c = '\u{6810}';
println!("{}", c); // Output: 栐
Go:
char := '\u6810'
fmt.Printf("%c\n", char) // Output: 栐
CSS:
/* CSS content property */
.element::before {
content: "\006810"; /* 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%A0%90
MD5:
77dd29af11bda6686dd6b7a59d73e245
SHA1:
a10844194fc541f385c102f406f335a07fe3f549
Base64:
5qCQ