C:
char c = '\u754C';
printf("%c\n", c); // Output: 界
JavaScript:
const char = '\u754C';
console.log(char); // Output: 界
Java:
char c = '\u754C';
System.out.println(c); // Output: 界
JSON:
{"text": "\u754C"} // Value: 界
Python:
char = '\u754C'
print(char) # Output: 界
Perl:
my $char = "\x{754C}";
print $char; # Output: 界
PHP:
$char = "\x{754C}";
echo $char; // Output: 界
Ruby:
char = "\u{754C}"
puts char # Output: 界
Rust:
let c = '\u{754C}';
println!("{}", c); // Output: 界
Go:
char := '\u754C'
fmt.Printf("%c\n", char) // Output: 界
CSS:
/* CSS content property */
.element::before {
content: "\00754C"; /* 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=%E7%95%8C
MD5:
abc5cbd76bdafd2686027f0df3fc80fd
SHA1:
5a492160842baca71154e2446c143e7e73cde1cc
Base64:
55WM