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