C:
char c = '\u8F82';
printf("%c\n", c); // Output: 辂
JavaScript:
const char = '\u8F82';
console.log(char); // Output: 辂
Java:
char c = '\u8F82';
System.out.println(c); // Output: 辂
JSON:
{"text": "\u8F82"} // Value: 辂
Python:
char = '\u8F82'
print(char) # Output: 辂
Perl:
my $char = "\x{8F82}";
print $char; # Output: 辂
PHP:
$char = "\x{8F82}";
echo $char; // Output: 辂
Ruby:
char = "\u{8F82}"
puts char # Output: 辂
Rust:
let c = '\u{8F82}';
println!("{}", c); // Output: 辂
Go:
char := '\u8F82'
fmt.Printf("%c\n", char) // Output: 辂
CSS:
/* CSS content property */
.element::before {
content: "\008F82"; /* 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%82
MD5:
97ee85fcc6e9c239b2e274fd436eeb3d
SHA1:
053d9e0cd0c81d656d869f08333a0720ef9af80d
Base64:
6L6C