C:
char c = '\u8585';
printf("%c\n", c); // Output: 薅
JavaScript:
const char = '\u8585';
console.log(char); // Output: 薅
Java:
char c = '\u8585';
System.out.println(c); // Output: 薅
JSON:
{"text": "\u8585"} // Value: 薅
Python:
char = '\u8585'
print(char) # Output: 薅
Perl:
my $char = "\x{8585}";
print $char; # Output: 薅
PHP:
$char = "\x{8585}";
echo $char; // Output: 薅
Ruby:
char = "\u{8585}"
puts char # Output: 薅
Rust:
let c = '\u{8585}';
println!("{}", c); // Output: 薅
Go:
char := '\u8585'
fmt.Printf("%c\n", char) // Output: 薅
CSS:
/* CSS content property */
.element::before {
content: "\008585"; /* 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%96%85
MD5:
89849ce94787455b31ccb0f6c00c101d
SHA1:
e59783c3460ac2f9c822e2b2f833e3045c3ce2f2
Base64:
6JaF