C:
char c = '\u5084';
printf("%c\n", c); // Output: 傄
JavaScript:
const char = '\u5084';
console.log(char); // Output: 傄
Java:
char c = '\u5084';
System.out.println(c); // Output: 傄
JSON:
{"text": "\u5084"} // Value: 傄
Python:
char = '\u5084'
print(char) # Output: 傄
Perl:
my $char = "\x{5084}";
print $char; # Output: 傄
PHP:
$char = "\x{5084}";
echo $char; // Output: 傄
Ruby:
char = "\u{5084}"
puts char # Output: 傄
Rust:
let c = '\u{5084}';
println!("{}", c); // Output: 傄
Go:
char := '\u5084'
fmt.Printf("%c\n", char) // Output: 傄
CSS:
/* CSS content property */
.element::before {
content: "\005084"; /* 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%84
MD5:
c249fc7d3bbabba63f46201531d9652a
SHA1:
7b372545b57b25e5dd608f3f4c60c2492877dd94
Base64:
5YKE