C:
char c = '\u5104';
printf("%c\n", c); // Output: 億
JavaScript:
const char = '\u5104';
console.log(char); // Output: 億
Java:
char c = '\u5104';
System.out.println(c); // Output: 億
JSON:
{"text": "\u5104"} // Value: 億
Python:
char = '\u5104'
print(char) # Output: 億
Perl:
my $char = "\x{5104}";
print $char; # Output: 億
PHP:
$char = "\x{5104}";
echo $char; // Output: 億
Ruby:
char = "\u{5104}"
puts char # Output: 億
Rust:
let c = '\u{5104}';
println!("{}", c); // Output: 億
Go:
char := '\u5104'
fmt.Printf("%c\n", char) // Output: 億
CSS:
/* CSS content property */
.element::before {
content: "\005104"; /* 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=%E5%84%84
MD5:
ba0c3dc69f41586f64b175be5bf342c5
SHA1:
8ceff4b88cbd7c84ec999d7e00e29f25d3792892
Base64:
5YSE