C:
char c = '\u680B';
printf("%c\n", c); // Output: 栋
JavaScript:
const char = '\u680B';
console.log(char); // Output: 栋
Java:
char c = '\u680B';
System.out.println(c); // Output: 栋
JSON:
{"text": "\u680B"} // Value: 栋
Python:
char = '\u680B'
print(char) # Output: 栋
Perl:
my $char = "\x{680B}";
print $char; # Output: 栋
PHP:
$char = "\x{680B}";
echo $char; // Output: 栋
Ruby:
char = "\u{680B}"
puts char # Output: 栋
Rust:
let c = '\u{680B}';
println!("{}", c); // Output: 栋
Go:
char := '\u680B'
fmt.Printf("%c\n", char) // Output: 栋
CSS:
/* CSS content property */
.element::before {
content: "\00680B"; /* 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%8B
MD5:
d0f99dc26fb9d4f4b01951419c86750d
SHA1:
4a023ddee6418f9409ec7037a48552536e1d6c87
Base64:
5qCL