C:
char c = '\u6481';
printf("%c\n", c); // Output: 撁
JavaScript:
const char = '\u6481';
console.log(char); // Output: 撁
Java:
char c = '\u6481';
System.out.println(c); // Output: 撁
JSON:
{"text": "\u6481"} // Value: 撁
Python:
char = '\u6481'
print(char) # Output: 撁
Perl:
my $char = "\x{6481}";
print $char; # Output: 撁
PHP:
$char = "\x{6481}";
echo $char; // Output: 撁
Ruby:
char = "\u{6481}"
puts char # Output: 撁
Rust:
let c = '\u{6481}';
println!("{}", c); // Output: 撁
Go:
char := '\u6481'
fmt.Printf("%c\n", char) // Output: 撁
CSS:
/* CSS content property */
.element::before {
content: "\006481"; /* 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%92%81
MD5:
8b184e47e48095ec6482f6bf24e51eab
SHA1:
d9e1326901d1c598314e45ebc0b4082b13112fc2
Base64:
5pKB