C:
char c = '\u6828';
printf("%c\n", c); // Output: 栨
JavaScript:
const char = '\u6828';
console.log(char); // Output: 栨
Java:
char c = '\u6828';
System.out.println(c); // Output: 栨
JSON:
{"text": "\u6828"} // Value: 栨
Python:
char = '\u6828'
print(char) # Output: 栨
Perl:
my $char = "\x{6828}";
print $char; # Output: 栨
PHP:
$char = "\x{6828}";
echo $char; // Output: 栨
Ruby:
char = "\u{6828}"
puts char # Output: 栨
Rust:
let c = '\u{6828}';
println!("{}", c); // Output: 栨
Go:
char := '\u6828'
fmt.Printf("%c\n", char) // Output: 栨
CSS:
/* CSS content property */
.element::before {
content: "\006828"; /* 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%A8
MD5:
e14871e095029997cba6a7ed0e1c01c5
SHA1:
3057501bceb2f843e95b8e0ddab640b2d3d3662e
Base64:
5qCo