C:
char c = '\u6802';
printf("%c\n", c); // Output: 栂
JavaScript:
const char = '\u6802';
console.log(char); // Output: 栂
Java:
char c = '\u6802';
System.out.println(c); // Output: 栂
JSON:
{"text": "\u6802"} // Value: 栂
Python:
char = '\u6802'
print(char) # Output: 栂
Perl:
my $char = "\x{6802}";
print $char; # Output: 栂
PHP:
$char = "\x{6802}";
echo $char; // Output: 栂
Ruby:
char = "\u{6802}"
puts char # Output: 栂
Rust:
let c = '\u{6802}';
println!("{}", c); // Output: 栂
Go:
char := '\u6802'
fmt.Printf("%c\n", char) // Output: 栂
CSS:
/* CSS content property */
.element::before {
content: "\006802"; /* 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%82
MD5:
269b04d25f79bb565de6940cd22b5780
SHA1:
653cb22b5b515828fe253895cdfc9d749163392c
Base64:
5qCC