C:
char c = '\u5082';
printf("%c\n", c); // Output: 傂
JavaScript:
const char = '\u5082';
console.log(char); // Output: 傂
Java:
char c = '\u5082';
System.out.println(c); // Output: 傂
JSON:
{"text": "\u5082"} // Value: 傂
Python:
char = '\u5082'
print(char) # Output: 傂
Perl:
my $char = "\x{5082}";
print $char; # Output: 傂
PHP:
$char = "\x{5082}";
echo $char; // Output: 傂
Ruby:
char = "\u{5082}"
puts char # Output: 傂
Rust:
let c = '\u{5082}';
println!("{}", c); // Output: 傂
Go:
char := '\u5082'
fmt.Printf("%c\n", char) // Output: 傂
CSS:
/* CSS content property */
.element::before {
content: "\005082"; /* 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%82%82
MD5:
14a1b8f7997d07dbb0188d5e24083025
SHA1:
2220e049dc9c900fa7d34ca5f6219aaa0d11f163
Base64:
5YKC