Unicode Finder

"辙" U+8F99(CJK UNIFIED IDEOGRAPH-8F99)

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

Programming

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

Web

CSS
\008F99
HtmlDecimal
辙
HtmlHexadecimal
辙
Url
%E8%BE%99

Code

MD5
6ca8aea469bd4bedfe1b739a2498f359
Sha1
1fae92791bea2a2dc18304749f563d23f10b73dc
Base64
6L6Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F99';
console.log(char);  // Output: 辙

Java:

char c = '\u8F99';
System.out.println(c);  // Output: 辙

JSON:

{"text": "\u8F99"}  // Value: 辙

Python:

char = '\u8F99'
print(char)  # Output: 辙

Perl:

my $char = "\x{8F99}";
print $char;  # Output: 辙

PHP:

$char = "\x{8F99}";
echo $char;  // Output: 辙

Ruby:

char = "\u{8F99}"
puts char  # Output: 辙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36761;</p>  <!-- Display: 辙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F99;</p>  <!-- Display: 辙 -->

URL Encoding:

// 辙 URL encoding
https://unicodefinder.com/search.php?query=%E8%BE%99

Encodings

MD5:

6ca8aea469bd4bedfe1b739a2498f359

SHA1:

1fae92791bea2a2dc18304749f563d23f10b73dc

Base64:

6L6Z