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