C:
char c = '\u6728';
printf("%c\n", c); // Output: 木
JavaScript:
const char = '\u6728';
console.log(char); // Output: 木
Java:
char c = '\u6728';
System.out.println(c); // Output: 木
JSON:
{"text": "\u6728"} // Value: 木
Python:
char = '\u6728'
print(char) # Output: 木
Perl:
my $char = "\x{6728}";
print $char; # Output: 木
PHP:
$char = "\x{6728}";
echo $char; // Output: 木
Ruby:
char = "\u{6728}"
puts char # Output: 木
Rust:
let c = '\u{6728}';
println!("{}", c); // Output: 木
Go:
char := '\u6728'
fmt.Printf("%c\n", char) // Output: 木
CSS:
/* CSS content property */
.element::before {
content: "\006728"; /* 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%9C%A8
MD5:
e0a5e08af3c1309c881b551516c282c5
SHA1:
8294db3a2006ae4a321f7f24d76942cf922c6c2e
Base64:
5pyo