C:
char c = '\u6823';
printf("%c\n", c); // Output: 栣
JavaScript:
const char = '\u6823';
console.log(char); // Output: 栣
Java:
char c = '\u6823';
System.out.println(c); // Output: 栣
JSON:
{"text": "\u6823"} // Value: 栣
Python:
char = '\u6823'
print(char) # Output: 栣
Perl:
my $char = "\x{6823}";
print $char; # Output: 栣
PHP:
$char = "\x{6823}";
echo $char; // Output: 栣
Ruby:
char = "\u{6823}"
puts char # Output: 栣
Rust:
let c = '\u{6823}';
println!("{}", c); // Output: 栣
Go:
char := '\u6823'
fmt.Printf("%c\n", char) // Output: 栣
CSS:
/* CSS content property */
.element::before {
content: "\006823"; /* 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%A3
MD5:
aad2dc393cb5bb8dc331677a8d9ee617
SHA1:
44a308920ed76720df4726d5c15381abd00c0f1f
Base64:
5qCj