C:
char c = '\u6806';
printf("%c\n", c); // Output: 栆
JavaScript:
const char = '\u6806';
console.log(char); // Output: 栆
Java:
char c = '\u6806';
System.out.println(c); // Output: 栆
JSON:
{"text": "\u6806"} // Value: 栆
Python:
char = '\u6806'
print(char) # Output: 栆
Perl:
my $char = "\x{6806}";
print $char; # Output: 栆
PHP:
$char = "\x{6806}";
echo $char; // Output: 栆
Ruby:
char = "\u{6806}"
puts char # Output: 栆
Rust:
let c = '\u{6806}';
println!("{}", c); // Output: 栆
Go:
char := '\u6806'
fmt.Printf("%c\n", char) // Output: 栆
CSS:
/* CSS content property */
.element::before {
content: "\006806"; /* 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%86
MD5:
0d9424d97ce2a387756d8978bb8f2bc0
SHA1:
b4d9401ebc54ff31ecea75dae76c12252be277ab
Base64:
5qCG