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