C:
char c = '\u6315';
printf("%c\n", c); // Output: 挕
JavaScript:
const char = '\u6315';
console.log(char); // Output: 挕
Java:
char c = '\u6315';
System.out.println(c); // Output: 挕
JSON:
{"text": "\u6315"} // Value: 挕
Python:
char = '\u6315'
print(char) # Output: 挕
Perl:
my $char = "\x{6315}";
print $char; # Output: 挕
PHP:
$char = "\x{6315}";
echo $char; // Output: 挕
Ruby:
char = "\u{6315}"
puts char # Output: 挕
Rust:
let c = '\u{6315}';
println!("{}", c); // Output: 挕
Go:
char := '\u6315'
fmt.Printf("%c\n", char) // Output: 挕
CSS:
/* CSS content property */
.element::before {
content: "\006315"; /* 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%8C%95
MD5:
555bdbce57096280385c2b8b2e7bbbd0
SHA1:
64903898d3bd04092b0363b153ce21f283c09106
Base64:
5oyV