C:
char c = '\u6805';
printf("%c\n", c); // Output: 栅
JavaScript:
const char = '\u6805';
console.log(char); // Output: 栅
Java:
char c = '\u6805';
System.out.println(c); // Output: 栅
JSON:
{"text": "\u6805"} // Value: 栅
Python:
char = '\u6805'
print(char) # Output: 栅
Perl:
my $char = "\x{6805}";
print $char; # Output: 栅
PHP:
$char = "\x{6805}";
echo $char; // Output: 栅
Ruby:
char = "\u{6805}"
puts char # Output: 栅
Rust:
let c = '\u{6805}';
println!("{}", c); // Output: 栅
Go:
char := '\u6805'
fmt.Printf("%c\n", char) // Output: 栅
CSS:
/* CSS content property */
.element::before {
content: "\006805"; /* 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%85
MD5:
9954b193ef9083ba3e36c6cf7d634e15
SHA1:
25fbc0d7b3013b6dbf73431a513b028831275c1b
Base64:
5qCF