C:
char c = '\u7185';
printf("%c\n", c); // Output: 熅
JavaScript:
const char = '\u7185';
console.log(char); // Output: 熅
Java:
char c = '\u7185';
System.out.println(c); // Output: 熅
JSON:
{"text": "\u7185"} // Value: 熅
Python:
char = '\u7185'
print(char) # Output: 熅
Perl:
my $char = "\x{7185}";
print $char; # Output: 熅
PHP:
$char = "\x{7185}";
echo $char; // Output: 熅
Ruby:
char = "\u{7185}"
puts char # Output: 熅
Rust:
let c = '\u{7185}';
println!("{}", c); // Output: 熅
Go:
char := '\u7185'
fmt.Printf("%c\n", char) // Output: 熅
CSS:
/* CSS content property */
.element::before {
content: "\007185"; /* 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%86%85
MD5:
7c35b6f4f9af03f287bc3b8a8a14331e
SHA1:
59d377d57b373fb4b228a3e42019501275a9f083
Base64:
54aF