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