Unicode Finder

"蒅" U+8485(CJK UNIFIED IDEOGRAPH-8485)

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

Programming

C
\u8485
JavaScript
\u8485
Java
\u8485
Json
\u8485
Python
\u8485
Perl
\x{8485}
PHP
\x{8485}
Ruby
\u{8485}
Rust
\u{8485}
Go
\u8485

Web

CSS
\008485
HtmlDecimal
蒅
HtmlHexadecimal
蒅
Url
%E8%92%85

Code

MD5
42bd8a1ea8ee5277a7ac3e01963da3a4
Sha1
891a0d29c65683c7769b648229a35a960c8961dc
Base64
6JKF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8485';
console.log(char);  // Output: 蒅

Java:

char c = '\u8485';
System.out.println(c);  // Output: 蒅

JSON:

{"text": "\u8485"}  // Value: 蒅

Python:

char = '\u8485'
print(char)  # Output: 蒅

Perl:

my $char = "\x{8485}";
print $char;  # Output: 蒅

PHP:

$char = "\x{8485}";
echo $char;  // Output: 蒅

Ruby:

char = "\u{8485}"
puts char  # Output: 蒅

Rust:

let c = '\u{8485}';
println!("{}", c);  // Output: 蒅

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008485";  /* Display: 蒅 */
}

HTML Decimal:

<p>HTML decimal: &#33925;</p>  <!-- Display: 蒅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8485;</p>  <!-- Display: 蒅 -->

URL Encoding:

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

Encodings

MD5:

42bd8a1ea8ee5277a7ac3e01963da3a4

SHA1:

891a0d29c65683c7769b648229a35a960c8961dc

Base64:

6JKF