C:
char c = '\u6451';
printf("%c\n", c); // Output: 摑
JavaScript:
const char = '\u6451';
console.log(char); // Output: 摑
Java:
char c = '\u6451';
System.out.println(c); // Output: 摑
JSON:
{"text": "\u6451"} // Value: 摑
Python:
char = '\u6451'
print(char) # Output: 摑
Perl:
my $char = "\x{6451}";
print $char; # Output: 摑
PHP:
$char = "\x{6451}";
echo $char; // Output: 摑
Ruby:
char = "\u{6451}"
puts char # Output: 摑
Rust:
let c = '\u{6451}';
println!("{}", c); // Output: 摑
Go:
char := '\u6451'
fmt.Printf("%c\n", char) // Output: 摑
CSS:
/* CSS content property */
.element::before {
content: "\006451"; /* 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%91%91
MD5:
d66835b00c6dcaeed383e382f3282177
SHA1:
6a2029001b2c135c15d88ec2488c55ab10743faa
Base64:
5pGR