C:
char c = '\u6999';
printf("%c\n", c); // Output: 榙
JavaScript:
const char = '\u6999';
console.log(char); // Output: 榙
Java:
char c = '\u6999';
System.out.println(c); // Output: 榙
JSON:
{"text": "\u6999"} // Value: 榙
Python:
char = '\u6999'
print(char) # Output: 榙
Perl:
my $char = "\x{6999}";
print $char; # Output: 榙
PHP:
$char = "\x{6999}";
echo $char; // Output: 榙
Ruby:
char = "\u{6999}"
puts char # Output: 榙
Rust:
let c = '\u{6999}';
println!("{}", c); // Output: 榙
Go:
char := '\u6999'
fmt.Printf("%c\n", char) // Output: 榙
CSS:
/* CSS content property */
.element::before {
content: "\006999"; /* 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%99
MD5:
f745be8bd663ffb569353cb4c307702b
SHA1:
97d5402b3fbc2ae53f7d05b300c0216b916380dd
Base64:
5qaZ