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