C:
char c = '\u8DEC';
printf("%c\n", c); // Output: 跬
JavaScript:
const char = '\u8DEC';
console.log(char); // Output: 跬
Java:
char c = '\u8DEC';
System.out.println(c); // Output: 跬
JSON:
{"text": "\u8DEC"} // Value: 跬
Python:
char = '\u8DEC'
print(char) # Output: 跬
Perl:
my $char = "\x{8DEC}";
print $char; # Output: 跬
PHP:
$char = "\x{8DEC}";
echo $char; // Output: 跬
Ruby:
char = "\u{8DEC}"
puts char # Output: 跬
Rust:
let c = '\u{8DEC}';
println!("{}", c); // Output: 跬
Go:
char := '\u8DEC'
fmt.Printf("%c\n", char) // Output: 跬
CSS:
/* CSS content property */
.element::before {
content: "\008DEC"; /* 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=%E8%B7%AC
MD5:
c372d3e809525113f9a745b6b454ecf3
SHA1:
99a42c86550afbe74722bada385a9b782f831f8c
Base64:
6Les