C:
char c = '\u6946';
printf("%c\n", c); // Output: 楆
JavaScript:
const char = '\u6946';
console.log(char); // Output: 楆
Java:
char c = '\u6946';
System.out.println(c); // Output: 楆
JSON:
{"text": "\u6946"} // Value: 楆
Python:
char = '\u6946'
print(char) # Output: 楆
Perl:
my $char = "\x{6946}";
print $char; # Output: 楆
PHP:
$char = "\x{6946}";
echo $char; // Output: 楆
Ruby:
char = "\u{6946}"
puts char # Output: 楆
Rust:
let c = '\u{6946}';
println!("{}", c); // Output: 楆
Go:
char := '\u6946'
fmt.Printf("%c\n", char) // Output: 楆
CSS:
/* CSS content property */
.element::before {
content: "\006946"; /* 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%A5%86
MD5:
8c8b7b6bff15e6fc2086bf74460364e1
SHA1:
2cd749e025d4208a79e5aa54b63831588a574ae8
Base64:
5qWG