Unicode Finder

"扐" U+6250(CJK UNIFIED IDEOGRAPH-6250)

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

Programming

C
\u6250
JavaScript
\u6250
Java
\u6250
Json
\u6250
Python
\u6250
Perl
\x{6250}
PHP
\x{6250}
Ruby
\u{6250}
Rust
\u{6250}
Go
\u6250

Web

CSS
\006250
HtmlDecimal
扐
HtmlHexadecimal
扐
Url
%E6%89%90

Code

MD5
42e8505c568680905960b7e8b986eb5b
Sha1
595baae9a0e751226899e31d3691dbf0c2d64d8c
Base64
5omQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6250';
console.log(char);  // Output: 扐

Java:

char c = '\u6250';
System.out.println(c);  // Output: 扐

JSON:

{"text": "\u6250"}  // Value: 扐

Python:

char = '\u6250'
print(char)  # Output: 扐

Perl:

my $char = "\x{6250}";
print $char;  # Output: 扐

PHP:

$char = "\x{6250}";
echo $char;  // Output: 扐

Ruby:

char = "\u{6250}"
puts char  # Output: 扐

Rust:

let c = '\u{6250}';
println!("{}", c);  // Output: 扐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006250";  /* Display: 扐 */
}

HTML Decimal:

<p>HTML decimal: &#25168;</p>  <!-- Display: 扐 -->

HTML Hexadecimal:

<p>HTML hex: &#x6250;</p>  <!-- Display: 扐 -->

URL Encoding:

// 扐 URL encoding
https://unicodefinder.com/search.php?query=%E6%89%90

Encodings

MD5:

42e8505c568680905960b7e8b986eb5b

SHA1:

595baae9a0e751226899e31d3691dbf0c2d64d8c

Base64:

5omQ