C:
char c = '\u4EA9';
printf("%c\n", c); // Output: 亩
JavaScript:
const char = '\u4EA9';
console.log(char); // Output: 亩
Java:
char c = '\u4EA9';
System.out.println(c); // Output: 亩
JSON:
{"text": "\u4EA9"} // Value: 亩
Python:
char = '\u4EA9'
print(char) # Output: 亩
Perl:
my $char = "\x{4EA9}";
print $char; # Output: 亩
PHP:
$char = "\x{4EA9}";
echo $char; // Output: 亩
Ruby:
char = "\u{4EA9}"
puts char # Output: 亩
Rust:
let c = '\u{4EA9}';
println!("{}", c); // Output: 亩
Go:
char := '\u4EA9'
fmt.Printf("%c\n", char) // Output: 亩
CSS:
/* CSS content property */
.element::before {
content: "\004EA9"; /* 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=%E4%BA%A9
MD5:
aca628c45a4a694cec8cf20153323abf
SHA1:
8dfea8d6cd610b40730ad4d8309de67021d6f7b7
Base64:
5Lqp