C:
char c = '\u6995';
printf("%c\n", c); // Output: 榕
JavaScript:
const char = '\u6995';
console.log(char); // Output: 榕
Java:
char c = '\u6995';
System.out.println(c); // Output: 榕
JSON:
{"text": "\u6995"} // Value: 榕
Python:
char = '\u6995'
print(char) # Output: 榕
Perl:
my $char = "\x{6995}";
print $char; # Output: 榕
PHP:
$char = "\x{6995}";
echo $char; // Output: 榕
Ruby:
char = "\u{6995}"
puts char # Output: 榕
Rust:
let c = '\u{6995}';
println!("{}", c); // Output: 榕
Go:
char := '\u6995'
fmt.Printf("%c\n", char) // Output: 榕
CSS:
/* CSS content property */
.element::before {
content: "\006995"; /* 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%95
MD5:
83ccc38ee996dd7a0c4a742adf8080aa
SHA1:
c8e46fe1d1d6a83b2d1432bd34d61b7a35ca9341
Base64:
5qaV