C:
char c = '\u571F';
printf("%c\n", c); // Output: 土
JavaScript:
const char = '\u571F';
console.log(char); // Output: 土
Java:
char c = '\u571F';
System.out.println(c); // Output: 土
JSON:
{"text": "\u571F"} // Value: 土
Python:
char = '\u571F'
print(char) # Output: 土
Perl:
my $char = "\x{571F}";
print $char; # Output: 土
PHP:
$char = "\x{571F}";
echo $char; // Output: 土
Ruby:
char = "\u{571F}"
puts char # Output: 土
Rust:
let c = '\u{571F}';
println!("{}", c); // Output: 土
Go:
char := '\u571F'
fmt.Printf("%c\n", char) // Output: 土
CSS:
/* CSS content property */
.element::before {
content: "\00571F"; /* 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%9C%9F
MD5:
06da773f581671ce879fa4a68aa916e2
SHA1:
90fbc9b1ac2e78e1f6dd82e82edb62588aff8c7a
Base64:
5Zyf