Unicode Finder

"扜" U+625C(CJK UNIFIED IDEOGRAPH-625C)

U+625C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-625C

Programming

C
\u625C
JavaScript
\u625C
Java
\u625C
Json
\u625C
Python
\u625C
Perl
\x{625C}
PHP
\x{625C}
Ruby
\u{625C}
Rust
\u{625C}
Go
\u625C

Web

CSS
\00625C
HtmlDecimal
扜
HtmlHexadecimal
扜
Url
%E6%89%9C

Code

MD5
3e4ae85351044e2d61ba66e0b4271780
Sha1
4918c2a9d33d0305bb8fe7412d94d36559f0656c
Base64
5omc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u625C';
console.log(char);  // Output: 扜

Java:

char c = '\u625C';
System.out.println(c);  // Output: 扜

JSON:

{"text": "\u625C"}  // Value: 扜

Python:

char = '\u625C'
print(char)  # Output: 扜

Perl:

my $char = "\x{625C}";
print $char;  # Output: 扜

PHP:

$char = "\x{625C}";
echo $char;  // Output: 扜

Ruby:

char = "\u{625C}"
puts char  # Output: 扜

Rust:

let c = '\u{625C}';
println!("{}", c);  // Output: 扜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00625C";  /* Display: 扜 */
}

HTML Decimal:

<p>HTML decimal: &#25180;</p>  <!-- Display: 扜 -->

HTML Hexadecimal:

<p>HTML hex: &#x625C;</p>  <!-- Display: 扜 -->

URL Encoding:

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

Encodings

MD5:

3e4ae85351044e2d61ba66e0b4271780

SHA1:

4918c2a9d33d0305bb8fe7412d94d36559f0656c

Base64:

5omc