C:
char c = '\u6990';
printf("%c\n", c); // Output: 榐
JavaScript:
const char = '\u6990';
console.log(char); // Output: 榐
Java:
char c = '\u6990';
System.out.println(c); // Output: 榐
JSON:
{"text": "\u6990"} // Value: 榐
Python:
char = '\u6990'
print(char) # Output: 榐
Perl:
my $char = "\x{6990}";
print $char; # Output: 榐
PHP:
$char = "\x{6990}";
echo $char; // Output: 榐
Ruby:
char = "\u{6990}"
puts char # Output: 榐
Rust:
let c = '\u{6990}';
println!("{}", c); // Output: 榐
Go:
char := '\u6990'
fmt.Printf("%c\n", char) // Output: 榐
CSS:
/* CSS content property */
.element::before {
content: "\006990"; /* 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%90
MD5:
66afc7005642d75f5608937ac8a7665c
SHA1:
452cd7e2e587f3ff2e2686256dc2991faf86613b
Base64:
5qaQ