C:
char c = '\u6E70';
printf("%c\n", c); // Output: 湰
JavaScript:
const char = '\u6E70';
console.log(char); // Output: 湰
Java:
char c = '\u6E70';
System.out.println(c); // Output: 湰
JSON:
{"text": "\u6E70"} // Value: 湰
Python:
char = '\u6E70'
print(char) # Output: 湰
Perl:
my $char = "\x{6E70}";
print $char; # Output: 湰
PHP:
$char = "\x{6E70}";
echo $char; // Output: 湰
Ruby:
char = "\u{6E70}"
puts char # Output: 湰
Rust:
let c = '\u{6E70}';
println!("{}", c); // Output: 湰
Go:
char := '\u6E70'
fmt.Printf("%c\n", char) // Output: 湰
CSS:
/* CSS content property */
.element::before {
content: "\006E70"; /* 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=%E6%B9%B0
MD5:
d40a613c1cea98d2f7a352fa4316540f
SHA1:
8f2bedc8ead09ceed41bf8b0439e7786c769daeb
Base64:
5rmw