C:
char c = '\u645A';
printf("%c\n", c); // Output: 摚
JavaScript:
const char = '\u645A';
console.log(char); // Output: 摚
Java:
char c = '\u645A';
System.out.println(c); // Output: 摚
JSON:
{"text": "\u645A"} // Value: 摚
Python:
char = '\u645A'
print(char) # Output: 摚
Perl:
my $char = "\x{645A}";
print $char; # Output: 摚
PHP:
$char = "\x{645A}";
echo $char; // Output: 摚
Ruby:
char = "\u{645A}"
puts char # Output: 摚
Rust:
let c = '\u{645A}';
println!("{}", c); // Output: 摚
Go:
char := '\u645A'
fmt.Printf("%c\n", char) // Output: 摚
CSS:
/* CSS content property */
.element::before {
content: "\00645A"; /* 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%9A
MD5:
87783dd3803fe2053393131cce71caf8
SHA1:
1620027ab68892f349b93663099d67d01fe49a9d
Base64:
5pGa