C:
char c = '\u7AC5';
printf("%c\n", c); // Output: 竅
JavaScript:
const char = '\u7AC5';
console.log(char); // Output: 竅
Java:
char c = '\u7AC5';
System.out.println(c); // Output: 竅
JSON:
{"text": "\u7AC5"} // Value: 竅
Python:
char = '\u7AC5'
print(char) # Output: 竅
Perl:
my $char = "\x{7AC5}";
print $char; # Output: 竅
PHP:
$char = "\x{7AC5}";
echo $char; // Output: 竅
Ruby:
char = "\u{7AC5}"
puts char # Output: 竅
Rust:
let c = '\u{7AC5}';
println!("{}", c); // Output: 竅
Go:
char := '\u7AC5'
fmt.Printf("%c\n", char) // Output: 竅
CSS:
/* CSS content property */
.element::before {
content: "\007AC5"; /* 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%AB%85
MD5:
9705ff7ebaaaba87e54089ed13522ba1
SHA1:
506df78d89efe1f25b529a035af57638270fa624
Base64:
56uF