C:
char c = '\u5C9B';
printf("%c\n", c); // Output: 岛
JavaScript:
const char = '\u5C9B';
console.log(char); // Output: 岛
Java:
char c = '\u5C9B';
System.out.println(c); // Output: 岛
JSON:
{"text": "\u5C9B"} // Value: 岛
Python:
char = '\u5C9B'
print(char) # Output: 岛
Perl:
my $char = "\x{5C9B}";
print $char; # Output: 岛
PHP:
$char = "\x{5C9B}";
echo $char; // Output: 岛
Ruby:
char = "\u{5C9B}"
puts char # Output: 岛
Rust:
let c = '\u{5C9B}';
println!("{}", c); // Output: 岛
Go:
char := '\u5C9B'
fmt.Printf("%c\n", char) // Output: 岛
CSS:
/* CSS content property */
.element::before {
content: "\005C9B"; /* 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%B2%9B
MD5:
1ec268bbef6dd82d1f491592c3a3ad61
SHA1:
4543dd956c469ef81b657dd626281b8adfefcd83
Base64:
5bKb