Unicode Finder

"朿" U+673F(CJK UNIFIED IDEOGRAPH-673F)

U+673F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-673F

Programming

C
\u673F
JavaScript
\u673F
Java
\u673F
Json
\u673F
Python
\u673F
Perl
\x{673F}
PHP
\x{673F}
Ruby
\u{673F}
Rust
\u{673F}
Go
\u673F

Web

CSS
\00673F
HtmlDecimal
朿
HtmlHexadecimal
朿
Url
%E6%9C%BF

Code

MD5
23263ac46fa5b8ed6196bff997fbabc0
Sha1
42695960df00e4f5d4d426e21f48b2bc85d2a932
Base64
5py/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u673F';
console.log(char);  // Output: 朿

Java:

char c = '\u673F';
System.out.println(c);  // Output: 朿

JSON:

{"text": "\u673F"}  // Value: 朿

Python:

char = '\u673F'
print(char)  # Output: 朿

Perl:

my $char = "\x{673F}";
print $char;  # Output: 朿

PHP:

$char = "\x{673F}";
echo $char;  // Output: 朿

Ruby:

char = "\u{673F}"
puts char  # Output: 朿

Rust:

let c = '\u{673F}';
println!("{}", c);  // Output: 朿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00673F";  /* Display: 朿 */
}

HTML Decimal:

<p>HTML decimal: &#26431;</p>  <!-- Display: 朿 -->

HTML Hexadecimal:

<p>HTML hex: &#x673F;</p>  <!-- Display: 朿 -->

URL Encoding:

// 朿 URL encoding
https://unicodefinder.com/search.php?query=%E6%9C%BF

Encodings

MD5:

23263ac46fa5b8ed6196bff997fbabc0

SHA1:

42695960df00e4f5d4d426e21f48b2bc85d2a932

Base64:

5py/