C:
char c = '\u8511';
printf("%c\n", c); // Output: 蔑
JavaScript:
const char = '\u8511';
console.log(char); // Output: 蔑
Java:
char c = '\u8511';
System.out.println(c); // Output: 蔑
JSON:
{"text": "\u8511"} // Value: 蔑
Python:
char = '\u8511'
print(char) # Output: 蔑
Perl:
my $char = "\x{8511}";
print $char; # Output: 蔑
PHP:
$char = "\x{8511}";
echo $char; // Output: 蔑
Ruby:
char = "\u{8511}"
puts char # Output: 蔑
Rust:
let c = '\u{8511}';
println!("{}", c); // Output: 蔑
Go:
char := '\u8511'
fmt.Printf("%c\n", char) // Output: 蔑
CSS:
/* CSS content property */
.element::before {
content: "\008511"; /* 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%94%91
MD5:
e429012921485147d72c82f2898f6be6
SHA1:
468972b61557e2eb4dcc98429482cc5e48eeb6fc
Base64:
6JSR