C:
char c = '\u6826';
printf("%c\n", c); // Output: 栦
JavaScript:
const char = '\u6826';
console.log(char); // Output: 栦
Java:
char c = '\u6826';
System.out.println(c); // Output: 栦
JSON:
{"text": "\u6826"} // Value: 栦
Python:
char = '\u6826'
print(char) # Output: 栦
Perl:
my $char = "\x{6826}";
print $char; # Output: 栦
PHP:
$char = "\x{6826}";
echo $char; // Output: 栦
Ruby:
char = "\u{6826}"
puts char # Output: 栦
Rust:
let c = '\u{6826}';
println!("{}", c); // Output: 栦
Go:
char := '\u6826'
fmt.Printf("%c\n", char) // Output: 栦
CSS:
/* CSS content property */
.element::before {
content: "\006826"; /* 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%A6
MD5:
69e65e26128a55f8f1e6d52d27e4ac3b
SHA1:
28ae5b96324f21bf4206c7fcb6055704c21c319c
Base64:
5qCm