C:
char c = '\u962A';
printf("%c\n", c); // Output: 阪
JavaScript:
const char = '\u962A';
console.log(char); // Output: 阪
Java:
char c = '\u962A';
System.out.println(c); // Output: 阪
JSON:
{"text": "\u962A"} // Value: 阪
Python:
char = '\u962A'
print(char) # Output: 阪
Perl:
my $char = "\x{962A}";
print $char; # Output: 阪
PHP:
$char = "\x{962A}";
echo $char; // Output: 阪
Ruby:
char = "\u{962A}"
puts char # Output: 阪
Rust:
let c = '\u{962A}';
println!("{}", c); // Output: 阪
Go:
char := '\u962A'
fmt.Printf("%c\n", char) // Output: 阪
CSS:
/* CSS content property */
.element::before {
content: "\00962A"; /* 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=%E9%98%AA
MD5:
bd38ad952a0c9d1ed8fbc9f65ff02ffa
SHA1:
f0b7a8768ea56dabca367cc8e4f885cb03e6f28c
Base64:
6Ziq