C:
char c = '\u6510';
printf("%c\n", c); // Output: 攐
JavaScript:
const char = '\u6510';
console.log(char); // Output: 攐
Java:
char c = '\u6510';
System.out.println(c); // Output: 攐
JSON:
{"text": "\u6510"} // Value: 攐
Python:
char = '\u6510'
print(char) # Output: 攐
Perl:
my $char = "\x{6510}";
print $char; # Output: 攐
PHP:
$char = "\x{6510}";
echo $char; // Output: 攐
Ruby:
char = "\u{6510}"
puts char # Output: 攐
Rust:
let c = '\u{6510}';
println!("{}", c); // Output: 攐
Go:
char := '\u6510'
fmt.Printf("%c\n", char) // Output: 攐
CSS:
/* CSS content property */
.element::before {
content: "\006510"; /* 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%94%90
MD5:
17ef1ccbc3125b9fd67dafeb7fe11389
SHA1:
60cf544b3e782277a71e634dadadfdc8790c5981
Base64:
5pSQ