C:
char c = '\u6829';
printf("%c\n", c); // Output: 栩
JavaScript:
const char = '\u6829';
console.log(char); // Output: 栩
Java:
char c = '\u6829';
System.out.println(c); // Output: 栩
JSON:
{"text": "\u6829"} // Value: 栩
Python:
char = '\u6829'
print(char) # Output: 栩
Perl:
my $char = "\x{6829}";
print $char; # Output: 栩
PHP:
$char = "\x{6829}";
echo $char; // Output: 栩
Ruby:
char = "\u{6829}"
puts char # Output: 栩
Rust:
let c = '\u{6829}';
println!("{}", c); // Output: 栩
Go:
char := '\u6829'
fmt.Printf("%c\n", char) // Output: 栩
CSS:
/* CSS content property */
.element::before {
content: "\006829"; /* 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%A9
MD5:
751daeda700a1e8f70728650a7210ee7
SHA1:
f9014e0095bd508c0d4046762fa065a65289c12d
Base64:
5qCp