Unicode Finder

"赤" U+8D64(CJK UNIFIED IDEOGRAPH-8D64)

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

Programming

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

Web

CSS
\008D64
HtmlDecimal
赤
HtmlHexadecimal
赤
Url
%E8%B5%A4

Code

MD5
489378dc9f613bf0d741bd39907bf3e4
Sha1
72776ab68f81b0d9990bc6d8771ff9a096a071d9
Base64
6LWk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D64';
console.log(char);  // Output: 赤

Java:

char c = '\u8D64';
System.out.println(c);  // Output: 赤

JSON:

{"text": "\u8D64"}  // Value: 赤

Python:

char = '\u8D64'
print(char)  # Output: 赤

Perl:

my $char = "\x{8D64}";
print $char;  # Output: 赤

PHP:

$char = "\x{8D64}";
echo $char;  // Output: 赤

Ruby:

char = "\u{8D64}"
puts char  # Output: 赤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36196;</p>  <!-- Display: 赤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D64;</p>  <!-- Display: 赤 -->

URL Encoding:

// 赤 URL encoding
https://unicodefinder.com/search.php?query=%E8%B5%A4

Encodings

MD5:

489378dc9f613bf0d741bd39907bf3e4

SHA1:

72776ab68f81b0d9990bc6d8771ff9a096a071d9

Base64:

6LWk