Unicode Finder

"踰" U+8E30(CJK UNIFIED IDEOGRAPH-8E30)

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

Programming

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

Web

CSS
\008E30
HtmlDecimal
踰
HtmlHexadecimal
踰
Url
%E8%B8%B0

Code

MD5
8ea5b0722f84fef78f0437f0f9596c55
Sha1
257329f062797d79fd51f400349691e0455d66a2
Base64
6Liw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E30';
console.log(char);  // Output: 踰

Java:

char c = '\u8E30';
System.out.println(c);  // Output: 踰

JSON:

{"text": "\u8E30"}  // Value: 踰

Python:

char = '\u8E30'
print(char)  # Output: 踰

Perl:

my $char = "\x{8E30}";
print $char;  # Output: 踰

PHP:

$char = "\x{8E30}";
echo $char;  // Output: 踰

Ruby:

char = "\u{8E30}"
puts char  # Output: 踰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36400;</p>  <!-- Display: 踰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E30;</p>  <!-- Display: 踰 -->

URL Encoding:

// 踰 URL encoding
https://unicodefinder.com/search.php?query=%E8%B8%B0

Encodings

MD5:

8ea5b0722f84fef78f0437f0f9596c55

SHA1:

257329f062797d79fd51f400349691e0455d66a2

Base64:

6Liw