C:
char c = '\u5085';
printf("%c\n", c); // Output: 傅
JavaScript:
const char = '\u5085';
console.log(char); // Output: 傅
Java:
char c = '\u5085';
System.out.println(c); // Output: 傅
JSON:
{"text": "\u5085"} // Value: 傅
Python:
char = '\u5085'
print(char) # Output: 傅
Perl:
my $char = "\x{5085}";
print $char; # Output: 傅
PHP:
$char = "\x{5085}";
echo $char; // Output: 傅
Ruby:
char = "\u{5085}"
puts char # Output: 傅
Rust:
let c = '\u{5085}';
println!("{}", c); // Output: 傅
Go:
char := '\u5085'
fmt.Printf("%c\n", char) // Output: 傅
CSS:
/* CSS content property */
.element::before {
content: "\005085"; /* 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%85
MD5:
312dadeb14ede20cf2f351a58900c42e
SHA1:
c055c88f467109729e227741763bcb249ff7d75e
Base64:
5YKF