C:
char c = '\u5083';
printf("%c\n", c); // Output: 傃
JavaScript:
const char = '\u5083';
console.log(char); // Output: 傃
Java:
char c = '\u5083';
System.out.println(c); // Output: 傃
JSON:
{"text": "\u5083"} // Value: 傃
Python:
char = '\u5083'
print(char) # Output: 傃
Perl:
my $char = "\x{5083}";
print $char; # Output: 傃
PHP:
$char = "\x{5083}";
echo $char; // Output: 傃
Ruby:
char = "\u{5083}"
puts char # Output: 傃
Rust:
let c = '\u{5083}';
println!("{}", c); // Output: 傃
Go:
char := '\u5083'
fmt.Printf("%c\n", char) // Output: 傃
CSS:
/* CSS content property */
.element::before {
content: "\005083"; /* 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%83
MD5:
19f8ad20fed3a2c84dfecd6d33d1ba92
SHA1:
783c44c8aa63250c327d66310330121f591af61d
Base64:
5YKD