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