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