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