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