Unicode Finder

"际" U+9645(CJK UNIFIED IDEOGRAPH-9645)

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

Programming

C
\u9645
JavaScript
\u9645
Java
\u9645
Json
\u9645
Python
\u9645
Perl
\x{9645}
PHP
\x{9645}
Ruby
\u{9645}
Rust
\u{9645}
Go
\u9645

Web

CSS
\009645
HtmlDecimal
际
HtmlHexadecimal
际
Url
%E9%99%85

Code

MD5
e9fd8f2ed6d8be4238318b5b4181c14e
Sha1
2e34088568bcdbc4b2720532a5ea6487f694e152
Base64
6ZmF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9645';
console.log(char);  // Output: 际

Java:

char c = '\u9645';
System.out.println(c);  // Output: 际

JSON:

{"text": "\u9645"}  // Value: 际

Python:

char = '\u9645'
print(char)  # Output: 际

Perl:

my $char = "\x{9645}";
print $char;  # Output: 际

PHP:

$char = "\x{9645}";
echo $char;  // Output: 际

Ruby:

char = "\u{9645}"
puts char  # Output: 际

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009645";  /* Display: 际 */
}

HTML Decimal:

<p>HTML decimal: &#38469;</p>  <!-- Display: 际 -->

HTML Hexadecimal:

<p>HTML hex: &#x9645;</p>  <!-- Display: 际 -->

URL Encoding:

// 际 URL encoding
https://unicodefinder.com/search.php?query=%E9%99%85

Encodings

MD5:

e9fd8f2ed6d8be4238318b5b4181c14e

SHA1:

2e34088568bcdbc4b2720532a5ea6487f694e152

Base64:

6ZmF