C:
char c = '\u6A11';
printf("%c\n", c); // Output: 樑
JavaScript:
const char = '\u6A11';
console.log(char); // Output: 樑
Java:
char c = '\u6A11';
System.out.println(c); // Output: 樑
JSON:
{"text": "\u6A11"} // Value: 樑
Python:
char = '\u6A11'
print(char) # Output: 樑
Perl:
my $char = "\x{6A11}";
print $char; # Output: 樑
PHP:
$char = "\x{6A11}";
echo $char; // Output: 樑
Ruby:
char = "\u{6A11}"
puts char # Output: 樑
Rust:
let c = '\u{6A11}';
println!("{}", c); // Output: 樑
Go:
char := '\u6A11'
fmt.Printf("%c\n", char) // Output: 樑
CSS:
/* CSS content property */
.element::before {
content: "\006A11"; /* 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%A8%91
MD5:
67d358df065da0d0e83dce48c78b4a79
SHA1:
1fb76b252a2c7bcd979d622c54d8b5a34b07c300
Base64:
5qiR