Unicode Finder

"跒" U+8DD2(CJK UNIFIED IDEOGRAPH-8DD2)

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

Programming

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

Web

CSS
\008DD2
HtmlDecimal
跒
HtmlHexadecimal
跒
Url
%E8%B7%92

Code

MD5
a4015eaa38bc4afdad7403a5e9c0bbc4
Sha1
e107c558acc13f49677127feee59b3e24591d4db
Base64
6LeS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DD2';
console.log(char);  // Output: 跒

Java:

char c = '\u8DD2';
System.out.println(c);  // Output: 跒

JSON:

{"text": "\u8DD2"}  // Value: 跒

Python:

char = '\u8DD2'
print(char)  # Output: 跒

Perl:

my $char = "\x{8DD2}";
print $char;  # Output: 跒

PHP:

$char = "\x{8DD2}";
echo $char;  // Output: 跒

Ruby:

char = "\u{8DD2}"
puts char  # Output: 跒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36306;</p>  <!-- Display: 跒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DD2;</p>  <!-- Display: 跒 -->

URL Encoding:

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

Encodings

MD5:

a4015eaa38bc4afdad7403a5e9c0bbc4

SHA1:

e107c558acc13f49677127feee59b3e24591d4db

Base64:

6LeS