Unicode Finder

"迹" U+8FF9(CJK UNIFIED IDEOGRAPH-8FF9)

U+8FF9
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8FF9

Programming

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

Web

CSS
\008FF9
HtmlDecimal
迹
HtmlHexadecimal
迹
Url
%E8%BF%B9

Code

MD5
9fde487651e914b15b0bb6280743df01
Sha1
7c440df82fc81e8b82215e7b68528a8ba6b25907
Base64
6L+5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8FF9';
console.log(char);  // Output: 迹

Java:

char c = '\u8FF9';
System.out.println(c);  // Output: 迹

JSON:

{"text": "\u8FF9"}  // Value: 迹

Python:

char = '\u8FF9'
print(char)  # Output: 迹

Perl:

my $char = "\x{8FF9}";
print $char;  # Output: 迹

PHP:

$char = "\x{8FF9}";
echo $char;  // Output: 迹

Ruby:

char = "\u{8FF9}"
puts char  # Output: 迹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36857;</p>  <!-- Display: 迹 -->

HTML Hexadecimal:

<p>HTML hex: &#x8FF9;</p>  <!-- Display: 迹 -->

URL Encoding:

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

Encodings

MD5:

9fde487651e914b15b0bb6280743df01

SHA1:

7c440df82fc81e8b82215e7b68528a8ba6b25907

Base64:

6L+5