C:
char c = '\u8F26';
printf("%c\n", c); // Output: 輦
JavaScript:
const char = '\u8F26';
console.log(char); // Output: 輦
Java:
char c = '\u8F26';
System.out.println(c); // Output: 輦
JSON:
{"text": "\u8F26"} // Value: 輦
Python:
char = '\u8F26'
print(char) # Output: 輦
Perl:
my $char = "\x{8F26}";
print $char; # Output: 輦
PHP:
$char = "\x{8F26}";
echo $char; // Output: 輦
Ruby:
char = "\u{8F26}"
puts char # Output: 輦
Rust:
let c = '\u{8F26}';
println!("{}", c); // Output: 輦
Go:
char := '\u8F26'
fmt.Printf("%c\n", char) // Output: 輦
CSS:
/* CSS content property */
.element::before {
content: "\008F26"; /* 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%A6
MD5:
02d074db9a59b5174d7ed362987acfd5
SHA1:
4bb379fda1d72e600205f093d3a686609713f261
Base64:
6Lym