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