C:
char c = '\u4F5B';
printf("%c\n", c); // Output: 佛
JavaScript:
const char = '\u4F5B';
console.log(char); // Output: 佛
Java:
char c = '\u4F5B';
System.out.println(c); // Output: 佛
JSON:
{"text": "\u4F5B"} // Value: 佛
Python:
char = '\u4F5B'
print(char) # Output: 佛
Perl:
my $char = "\x{4F5B}";
print $char; # Output: 佛
PHP:
$char = "\x{4F5B}";
echo $char; // Output: 佛
Ruby:
char = "\u{4F5B}"
puts char # Output: 佛
Rust:
let c = '\u{4F5B}';
println!("{}", c); // Output: 佛
Go:
char := '\u4F5B'
fmt.Printf("%c\n", char) // Output: 佛
CSS:
/* CSS content property */
.element::before {
content: "\004F5B"; /* 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=%E4%BD%9B
MD5:
20c37a06f23b7a0c92b18db3e5d57306
SHA1:
7e0b929aefc5cfd9ab914e037ebd20283cbabfd8
Base64:
5L2b