Unicode Finder

"跄" U+8DC4(CJK UNIFIED IDEOGRAPH-8DC4)

U+8DC4
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8DC4

Programming

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

Web

CSS
\008DC4
HtmlDecimal
跄
HtmlHexadecimal
跄
Url
%E8%B7%84

Code

MD5
cc4a4c13ff8ecad35e5039d78ffca71b
Sha1
5ace237719457ebf8a9ca5471628fbc62ea1dcde
Base64
6LeE

使用範例

Programming Languages

C:

char c = '\u8DC4';
printf("%c\n", c);  // Output: 跄

JavaScript:

const char = '\u8DC4';
console.log(char);  // Output: 跄

Java:

char c = '\u8DC4';
System.out.println(c);  // Output: 跄

JSON:

{"text": "\u8DC4"}  // Value: 跄

Python:

char = '\u8DC4'
print(char)  # Output: 跄

Perl:

my $char = "\x{8DC4}";
print $char;  # Output: 跄

PHP:

$char = "\x{8DC4}";
echo $char;  // Output: 跄

Ruby:

char = "\u{8DC4}"
puts char  # Output: 跄

Rust:

let c = '\u{8DC4}';
println!("{}", c);  // Output: 跄

Go:

char := '\u8DC4'
fmt.Printf("%c\n", char)  // Output: 跄

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36292;</p>  <!-- Display: 跄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DC4;</p>  <!-- Display: 跄 -->

URL Encoding:

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

Encodings

MD5:

cc4a4c13ff8ecad35e5039d78ffca71b

SHA1:

5ace237719457ebf8a9ca5471628fbc62ea1dcde

Base64:

6LeE