C:
char c = '\u8031';
printf("%c\n", c); // Output: 耱
JavaScript:
const char = '\u8031';
console.log(char); // Output: 耱
Java:
char c = '\u8031';
System.out.println(c); // Output: 耱
JSON:
{"text": "\u8031"} // Value: 耱
Python:
char = '\u8031'
print(char) # Output: 耱
Perl:
my $char = "\x{8031}";
print $char; # Output: 耱
PHP:
$char = "\x{8031}";
echo $char; // Output: 耱
Ruby:
char = "\u{8031}"
puts char # Output: 耱
Rust:
let c = '\u{8031}';
println!("{}", c); // Output: 耱
Go:
char := '\u8031'
fmt.Printf("%c\n", char) // Output: 耱
CSS:
/* CSS content property */
.element::before {
content: "\008031"; /* 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%B1
MD5:
bf51122cd0dc57d4bdb3a5bef352a5fa
SHA1:
8ef7ba163c7c30ea9197a492343572127a3283d5
Base64:
6ICx