C:
char c = '\u6470';
printf("%c\n", c); // Output: 摰
JavaScript:
const char = '\u6470';
console.log(char); // Output: 摰
Java:
char c = '\u6470';
System.out.println(c); // Output: 摰
JSON:
{"text": "\u6470"} // Value: 摰
Python:
char = '\u6470'
print(char) # Output: 摰
Perl:
my $char = "\x{6470}";
print $char; # Output: 摰
PHP:
$char = "\x{6470}";
echo $char; // Output: 摰
Ruby:
char = "\u{6470}"
puts char # Output: 摰
Rust:
let c = '\u{6470}';
println!("{}", c); // Output: 摰
Go:
char := '\u6470'
fmt.Printf("%c\n", char) // Output: 摰
CSS:
/* CSS content property */
.element::before {
content: "\006470"; /* 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%B0
MD5:
03a662767e581a6cae9971d4911d45ee
SHA1:
4a2182f633707fc63f78d94fe5a3e45ebd2715a1
Base64:
5pGw