C:
char c = '\u7901';
printf("%c\n", c); // Output: 礁
JavaScript:
const char = '\u7901';
console.log(char); // Output: 礁
Java:
char c = '\u7901';
System.out.println(c); // Output: 礁
JSON:
{"text": "\u7901"} // Value: 礁
Python:
char = '\u7901'
print(char) # Output: 礁
Perl:
my $char = "\x{7901}";
print $char; # Output: 礁
PHP:
$char = "\x{7901}";
echo $char; // Output: 礁
Ruby:
char = "\u{7901}"
puts char # Output: 礁
Rust:
let c = '\u{7901}';
println!("{}", c); // Output: 礁
Go:
char := '\u7901'
fmt.Printf("%c\n", char) // Output: 礁
CSS:
/* CSS content property */
.element::before {
content: "\007901"; /* 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%81
MD5:
4b2951fee0add722c151ff0dee2b4459
SHA1:
1cdfca0744b89e5d83e9bdb98bc06d90248ca959
Base64:
56SB