Unicode Finder

"幧" U+5E67(CJK UNIFIED IDEOGRAPH-5E67)

U+5E67
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5E67

Programming

C
\u5E67
JavaScript
\u5E67
Java
\u5E67
Json
\u5E67
Python
\u5E67
Perl
\x{5E67}
PHP
\x{5E67}
Ruby
\u{5E67}
Rust
\u{5E67}
Go
\u5E67

Web

CSS
\005E67
HtmlDecimal
幧
HtmlHexadecimal
幧
Url
%E5%B9%A7

Code

MD5
83aa5d81add4d2766aa0081d227a2337
Sha1
89fa1125d6b3390f49fb3d34555eeef000dd9c0a
Base64
5bmn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E67';
console.log(char);  // Output: 幧

Java:

char c = '\u5E67';
System.out.println(c);  // Output: 幧

JSON:

{"text": "\u5E67"}  // Value: 幧

Python:

char = '\u5E67'
print(char)  # Output: 幧

Perl:

my $char = "\x{5E67}";
print $char;  # Output: 幧

PHP:

$char = "\x{5E67}";
echo $char;  // Output: 幧

Ruby:

char = "\u{5E67}"
puts char  # Output: 幧

Rust:

let c = '\u{5E67}';
println!("{}", c);  // Output: 幧

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005E67";  /* Display: 幧 */
}

HTML Decimal:

<p>HTML decimal: &#24167;</p>  <!-- Display: 幧 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E67;</p>  <!-- Display: 幧 -->

URL Encoding:

// 幧 URL encoding
https://unicodefinder.com/search.php?query=%E5%B9%A7

Encodings

MD5:

83aa5d81add4d2766aa0081d227a2337

SHA1:

89fa1125d6b3390f49fb3d34555eeef000dd9c0a

Base64:

5bmn