C:
char c = '\u6988';
printf("%c\n", c); // Output: 榈
JavaScript:
const char = '\u6988';
console.log(char); // Output: 榈
Java:
char c = '\u6988';
System.out.println(c); // Output: 榈
JSON:
{"text": "\u6988"} // Value: 榈
Python:
char = '\u6988'
print(char) # Output: 榈
Perl:
my $char = "\x{6988}";
print $char; # Output: 榈
PHP:
$char = "\x{6988}";
echo $char; // Output: 榈
Ruby:
char = "\u{6988}"
puts char # Output: 榈
Rust:
let c = '\u{6988}';
println!("{}", c); // Output: 榈
Go:
char := '\u6988'
fmt.Printf("%c\n", char) // Output: 榈
CSS:
/* CSS content property */
.element::before {
content: "\006988"; /* 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%A6%88
MD5:
ddf979f02ac7cac9c7105b56077fbd3a
SHA1:
3f07ccbca0f48912fc20cf2cdca1c83718914983
Base64:
5qaI