C:
char c = '\u70B2';
printf("%c\n", c); // Output: 炲
JavaScript:
const char = '\u70B2';
console.log(char); // Output: 炲
Java:
char c = '\u70B2';
System.out.println(c); // Output: 炲
JSON:
{"text": "\u70B2"} // Value: 炲
Python:
char = '\u70B2'
print(char) # Output: 炲
Perl:
my $char = "\x{70B2}";
print $char; # Output: 炲
PHP:
$char = "\x{70B2}";
echo $char; // Output: 炲
Ruby:
char = "\u{70B2}"
puts char # Output: 炲
Rust:
let c = '\u{70B2}';
println!("{}", c); // Output: 炲
Go:
char := '\u70B2'
fmt.Printf("%c\n", char) // Output: 炲
CSS:
/* CSS content property */
.element::before {
content: "\0070B2"; /* 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%B2
MD5:
ad9b81d669a12c58ac6ecee7a0dbcdc9
SHA1:
db8ab76e40153507eeada0ca17ae0dc111936fe9
Base64:
54Ky