C:
char c = '\u7E50';
printf("%c\n", c); // Output: 繐
JavaScript:
const char = '\u7E50';
console.log(char); // Output: 繐
Java:
char c = '\u7E50';
System.out.println(c); // Output: 繐
JSON:
{"text": "\u7E50"} // Value: 繐
Python:
char = '\u7E50'
print(char) # Output: 繐
Perl:
my $char = "\x{7E50}";
print $char; # Output: 繐
PHP:
$char = "\x{7E50}";
echo $char; // Output: 繐
Ruby:
char = "\u{7E50}"
puts char # Output: 繐
Rust:
let c = '\u{7E50}';
println!("{}", c); // Output: 繐
Go:
char := '\u7E50'
fmt.Printf("%c\n", char) // Output: 繐
CSS:
/* CSS content property */
.element::before {
content: "\007E50"; /* 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%B9%90
MD5:
fe18b72c8bdc6d8e97d8e67490d1e8be
SHA1:
88014ff72a81c8a558fd399eec3b93736a8cfc2d
Base64:
57mQ