C:
char c = '\u8F05';
printf("%c\n", c); // Output: 輅
JavaScript:
const char = '\u8F05';
console.log(char); // Output: 輅
Java:
char c = '\u8F05';
System.out.println(c); // Output: 輅
JSON:
{"text": "\u8F05"} // Value: 輅
Python:
char = '\u8F05'
print(char) # Output: 輅
Perl:
my $char = "\x{8F05}";
print $char; # Output: 輅
PHP:
$char = "\x{8F05}";
echo $char; // Output: 輅
Ruby:
char = "\u{8F05}"
puts char # Output: 輅
Rust:
let c = '\u{8F05}';
println!("{}", c); // Output: 輅
Go:
char := '\u8F05'
fmt.Printf("%c\n", char) // Output: 輅
CSS:
/* CSS content property */
.element::before {
content: "\008F05"; /* 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=%E8%BC%85
MD5:
93ee8dd09988927dbab8b3f248531a8d
SHA1:
e6a0cd6e6fddea0b6e086a3dd55171a11d837395
Base64:
6LyF