Unicode Finder

"赿" U+8D7F(CJK UNIFIED IDEOGRAPH-8D7F)

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

Programming

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

Web

CSS
\008D7F
HtmlDecimal
赿
HtmlHexadecimal
赿
Url
%E8%B5%BF

Code

MD5
1a4303c1d48efea95e50eac8a8f64a3f
Sha1
979db26688dd8a0bd680ad14fb5c9d4b24445ec4
Base64
6LW/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D7F';
console.log(char);  // Output: 赿

Java:

char c = '\u8D7F';
System.out.println(c);  // Output: 赿

JSON:

{"text": "\u8D7F"}  // Value: 赿

Python:

char = '\u8D7F'
print(char)  # Output: 赿

Perl:

my $char = "\x{8D7F}";
print $char;  # Output: 赿

PHP:

$char = "\x{8D7F}";
echo $char;  // Output: 赿

Ruby:

char = "\u{8D7F}"
puts char  # Output: 赿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36223;</p>  <!-- Display: 赿 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D7F;</p>  <!-- Display: 赿 -->

URL Encoding:

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

Encodings

MD5:

1a4303c1d48efea95e50eac8a8f64a3f

SHA1:

979db26688dd8a0bd680ad14fb5c9d4b24445ec4

Base64:

6LW/