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