C:
char c = '\u6485';
printf("%c\n", c); // Output: 撅
JavaScript:
const char = '\u6485';
console.log(char); // Output: 撅
Java:
char c = '\u6485';
System.out.println(c); // Output: 撅
JSON:
{"text": "\u6485"} // Value: 撅
Python:
char = '\u6485'
print(char) # Output: 撅
Perl:
my $char = "\x{6485}";
print $char; # Output: 撅
PHP:
$char = "\x{6485}";
echo $char; // Output: 撅
Ruby:
char = "\u{6485}"
puts char # Output: 撅
Rust:
let c = '\u{6485}';
println!("{}", c); // Output: 撅
Go:
char := '\u6485'
fmt.Printf("%c\n", char) // Output: 撅
CSS:
/* CSS content property */
.element::before {
content: "\006485"; /* 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%85
MD5:
a19aa2b5a6587931d0712d77ef87b990
SHA1:
350ca563e1ce1ce8776db8bb492e028bc2efeb85
Base64:
5pKF