C:
char c = '\u8025';
printf("%c\n", c); // Output: 耥
JavaScript:
const char = '\u8025';
console.log(char); // Output: 耥
Java:
char c = '\u8025';
System.out.println(c); // Output: 耥
JSON:
{"text": "\u8025"} // Value: 耥
Python:
char = '\u8025'
print(char) # Output: 耥
Perl:
my $char = "\x{8025}";
print $char; # Output: 耥
PHP:
$char = "\x{8025}";
echo $char; // Output: 耥
Ruby:
char = "\u{8025}"
puts char # Output: 耥
Rust:
let c = '\u{8025}';
println!("{}", c); // Output: 耥
Go:
char := '\u8025'
fmt.Printf("%c\n", char) // Output: 耥
CSS:
/* CSS content property */
.element::before {
content: "\008025"; /* 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%A5
MD5:
1fb50eec94ccda8d4d4ce31b22610db6
SHA1:
35a4604b7c978a5916fb3922953aaa399ef10108
Base64:
6ICl