C:
char c = '\u6450';
printf("%c\n", c); // Output: 摐
JavaScript:
const char = '\u6450';
console.log(char); // Output: 摐
Java:
char c = '\u6450';
System.out.println(c); // Output: 摐
JSON:
{"text": "\u6450"} // Value: 摐
Python:
char = '\u6450'
print(char) # Output: 摐
Perl:
my $char = "\x{6450}";
print $char; # Output: 摐
PHP:
$char = "\x{6450}";
echo $char; // Output: 摐
Ruby:
char = "\u{6450}"
puts char # Output: 摐
Rust:
let c = '\u{6450}';
println!("{}", c); // Output: 摐
Go:
char := '\u6450'
fmt.Printf("%c\n", char) // Output: 摐
CSS:
/* CSS content property */
.element::before {
content: "\006450"; /* 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%90
MD5:
101a0732aecfd3ef4c576fa2d34348a3
SHA1:
a0d5b2dc2d9d24cbd03e042348758379086e86d9
Base64:
5pGQ