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