C:
char c = '\u7D95';
printf("%c\n", c); // Output: 綕
JavaScript:
const char = '\u7D95';
console.log(char); // Output: 綕
Java:
char c = '\u7D95';
System.out.println(c); // Output: 綕
JSON:
{"text": "\u7D95"} // Value: 綕
Python:
char = '\u7D95'
print(char) # Output: 綕
Perl:
my $char = "\x{7D95}";
print $char; # Output: 綕
PHP:
$char = "\x{7D95}";
echo $char; // Output: 綕
Ruby:
char = "\u{7D95}"
puts char # Output: 綕
Rust:
let c = '\u{7D95}';
println!("{}", c); // Output: 綕
Go:
char := '\u7D95'
fmt.Printf("%c\n", char) // Output: 綕
CSS:
/* CSS content property */
.element::before {
content: "\007D95"; /* 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=%E7%B6%95
MD5:
dfd79be144527243101dde12e57da9f5
SHA1:
f9c66a8fc6f36f560061bacdfd8b4109573adcbd
Base64:
57aV