C:
char c = '\u8024';
printf("%c\n", c); // Output: 耤
JavaScript:
const char = '\u8024';
console.log(char); // Output: 耤
Java:
char c = '\u8024';
System.out.println(c); // Output: 耤
JSON:
{"text": "\u8024"} // Value: 耤
Python:
char = '\u8024'
print(char) # Output: 耤
Perl:
my $char = "\x{8024}";
print $char; # Output: 耤
PHP:
$char = "\x{8024}";
echo $char; // Output: 耤
Ruby:
char = "\u{8024}"
puts char # Output: 耤
Rust:
let c = '\u{8024}';
println!("{}", c); // Output: 耤
Go:
char := '\u8024'
fmt.Printf("%c\n", char) // Output: 耤
CSS:
/* CSS content property */
.element::before {
content: "\008024"; /* 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%80%A4
MD5:
5b8b35d3fa5bdac15880f79a77ebbded
SHA1:
4af4c63469a6523c76ed628b6204889da385ae63
Base64:
6ICk