C:
char c = '\u6445';
printf("%c\n", c); // Output: 摅
JavaScript:
const char = '\u6445';
console.log(char); // Output: 摅
Java:
char c = '\u6445';
System.out.println(c); // Output: 摅
JSON:
{"text": "\u6445"} // Value: 摅
Python:
char = '\u6445'
print(char) # Output: 摅
Perl:
my $char = "\x{6445}";
print $char; # Output: 摅
PHP:
$char = "\x{6445}";
echo $char; // Output: 摅
Ruby:
char = "\u{6445}"
puts char # Output: 摅
Rust:
let c = '\u{6445}';
println!("{}", c); // Output: 摅
Go:
char := '\u6445'
fmt.Printf("%c\n", char) // Output: 摅
CSS:
/* CSS content property */
.element::before {
content: "\006445"; /* 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%85
MD5:
25480c160c3ef342936d8f181a3dbfe9
SHA1:
f73f188f8ad14456ac687b8495f3b08180e89f6f
Base64:
5pGF