C:
char c = '\u5C82';
printf("%c\n", c); // Output: 岂
JavaScript:
const char = '\u5C82';
console.log(char); // Output: 岂
Java:
char c = '\u5C82';
System.out.println(c); // Output: 岂
JSON:
{"text": "\u5C82"} // Value: 岂
Python:
char = '\u5C82'
print(char) # Output: 岂
Perl:
my $char = "\x{5C82}";
print $char; # Output: 岂
PHP:
$char = "\x{5C82}";
echo $char; // Output: 岂
Ruby:
char = "\u{5C82}"
puts char # Output: 岂
Rust:
let c = '\u{5C82}';
println!("{}", c); // Output: 岂
Go:
char := '\u5C82'
fmt.Printf("%c\n", char) // Output: 岂
CSS:
/* CSS content property */
.element::before {
content: "\005C82"; /* 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=%E5%B2%82
MD5:
ff71e5a6424aebf9cceedaa3bc520921
SHA1:
147e23453f7fee578519b3a80e22aecd0153ee74
Base64:
5bKC