C:
char c = '\u7905';
printf("%c\n", c); // Output: 礅
JavaScript:
const char = '\u7905';
console.log(char); // Output: 礅
Java:
char c = '\u7905';
System.out.println(c); // Output: 礅
JSON:
{"text": "\u7905"} // Value: 礅
Python:
char = '\u7905'
print(char) # Output: 礅
Perl:
my $char = "\x{7905}";
print $char; # Output: 礅
PHP:
$char = "\x{7905}";
echo $char; // Output: 礅
Ruby:
char = "\u{7905}"
puts char # Output: 礅
Rust:
let c = '\u{7905}';
println!("{}", c); // Output: 礅
Go:
char := '\u7905'
fmt.Printf("%c\n", char) // Output: 礅
CSS:
/* CSS content property */
.element::before {
content: "\007905"; /* 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%A4%85
MD5:
9fde1ac962232b94ae5b3695fae5a45c
SHA1:
73bb3bad712c362609e6cf32af4be6520bd15b6d
Base64:
56SF