C:
char c = '\u7027';
printf("%c\n", c); // Output: 瀧
JavaScript:
const char = '\u7027';
console.log(char); // Output: 瀧
Java:
char c = '\u7027';
System.out.println(c); // Output: 瀧
JSON:
{"text": "\u7027"} // Value: 瀧
Python:
char = '\u7027'
print(char) # Output: 瀧
Perl:
my $char = "\x{7027}";
print $char; # Output: 瀧
PHP:
$char = "\x{7027}";
echo $char; // Output: 瀧
Ruby:
char = "\u{7027}"
puts char # Output: 瀧
Rust:
let c = '\u{7027}';
println!("{}", c); // Output: 瀧
Go:
char := '\u7027'
fmt.Printf("%c\n", char) // Output: 瀧
CSS:
/* CSS content property */
.element::before {
content: "\007027"; /* 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%80%A7
MD5:
26da9f29bf52e2ca3cc474d45613bb41
SHA1:
1436f4abc5f295e3d5a5ed37d1fca5c24571a8d8
Base64:
54Cn