Unicode Finder

"跬" U+8DEC(CJK UNIFIED IDEOGRAPH-8DEC)

U+8DEC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8DEC

Programming

C
\u8DEC
JavaScript
\u8DEC
Java
\u8DEC
Json
\u8DEC
Python
\u8DEC
Perl
\x{8DEC}
PHP
\x{8DEC}
Ruby
\u{8DEC}
Rust
\u{8DEC}
Go
\u8DEC

Web

CSS
\008DEC
HtmlDecimal
跬
HtmlHexadecimal
跬
Url
%E8%B7%AC

Code

MD5
c372d3e809525113f9a745b6b454ecf3
Sha1
99a42c86550afbe74722bada385a9b782f831f8c
Base64
6Les

使用示例

Programming Languages

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: 跬

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008DEC";  /* Display: 跬 */
}

HTML Decimal:

<p>HTML decimal: &#36332;</p>  <!-- Display: 跬 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DEC;</p>  <!-- Display: 跬 -->

URL Encoding:

// 跬 URL encoding
https://unicodefinder.com/search.php?query=%E8%B7%AC

Encodings

MD5:

c372d3e809525113f9a745b6b454ecf3

SHA1:

99a42c86550afbe74722bada385a9b782f831f8c

Base64:

6Les