C:
char c = '\u6460';
printf("%c\n", c); // Output: 摠
JavaScript:
const char = '\u6460';
console.log(char); // Output: 摠
Java:
char c = '\u6460';
System.out.println(c); // Output: 摠
JSON:
{"text": "\u6460"} // Value: 摠
Python:
char = '\u6460'
print(char) # Output: 摠
Perl:
my $char = "\x{6460}";
print $char; # Output: 摠
PHP:
$char = "\x{6460}";
echo $char; // Output: 摠
Ruby:
char = "\u{6460}"
puts char # Output: 摠
Rust:
let c = '\u{6460}';
println!("{}", c); // Output: 摠
Go:
char := '\u6460'
fmt.Printf("%c\n", char) // Output: 摠
CSS:
/* CSS content property */
.element::before {
content: "\006460"; /* 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%A0
MD5:
2cedc35f00d3edc6ab2434cf109ab556
SHA1:
0d1d0ce32aea9ef897737df39e69b3d51574f1eb
Base64:
5pGg