C:
char c = '\u7085';
printf("%c\n", c); // Output: 炅
JavaScript:
const char = '\u7085';
console.log(char); // Output: 炅
Java:
char c = '\u7085';
System.out.println(c); // Output: 炅
JSON:
{"text": "\u7085"} // Value: 炅
Python:
char = '\u7085'
print(char) # Output: 炅
Perl:
my $char = "\x{7085}";
print $char; # Output: 炅
PHP:
$char = "\x{7085}";
echo $char; // Output: 炅
Ruby:
char = "\u{7085}"
puts char # Output: 炅
Rust:
let c = '\u{7085}';
println!("{}", c); // Output: 炅
Go:
char := '\u7085'
fmt.Printf("%c\n", char) // Output: 炅
CSS:
/* CSS content property */
.element::before {
content: "\007085"; /* 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%82%85
MD5:
74a9a23617e48790254a616014338ee3
SHA1:
24dc01655f5994ae59f99eefe9f1cb893ee73823
Base64:
54KF