C:
char c = '\u882F';
printf("%c\n", c); // Output: 蠯
JavaScript:
const char = '\u882F';
console.log(char); // Output: 蠯
Java:
char c = '\u882F';
System.out.println(c); // Output: 蠯
JSON:
{"text": "\u882F"} // Value: 蠯
Python:
char = '\u882F'
print(char) # Output: 蠯
Perl:
my $char = "\x{882F}";
print $char; # Output: 蠯
PHP:
$char = "\x{882F}";
echo $char; // Output: 蠯
Ruby:
char = "\u{882F}"
puts char # Output: 蠯
Rust:
let c = '\u{882F}';
println!("{}", c); // Output: 蠯
Go:
char := '\u882F'
fmt.Printf("%c\n", char) // Output: 蠯
CSS:
/* CSS content property */
.element::before {
content: "\00882F"; /* 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%A0%AF
MD5:
7de495d5dd6ed476d9101438347879f8
SHA1:
ad12a72210413808e5231790ad4417d84540eb88
Base64:
6KCv