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