C:
char c = '\u9B25';
printf("%c\n", c); // Output: 鬥
JavaScript:
const char = '\u9B25';
console.log(char); // Output: 鬥
Java:
char c = '\u9B25';
System.out.println(c); // Output: 鬥
JSON:
{"text": "\u9B25"} // Value: 鬥
Python:
char = '\u9B25'
print(char) # Output: 鬥
Perl:
my $char = "\x{9B25}";
print $char; # Output: 鬥
PHP:
$char = "\x{9B25}";
echo $char; // Output: 鬥
Ruby:
char = "\u{9B25}"
puts char # Output: 鬥
Rust:
let c = '\u{9B25}';
println!("{}", c); // Output: 鬥
Go:
char := '\u9B25'
fmt.Printf("%c\n", char) // Output: 鬥
CSS:
/* CSS content property */
.element::before {
content: "\009B25"; /* 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%AC%A5
MD5:
52e8fbef010b86380283f9ceb73d7c21
SHA1:
d66f3948bedaa5ce42fdab963cb317af110ceebb
Base64:
6ayl