Unicode Finder

"扨" U+6268(CJK UNIFIED IDEOGRAPH-6268)

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

Programming

C
\u6268
JavaScript
\u6268
Java
\u6268
Json
\u6268
Python
\u6268
Perl
\x{6268}
PHP
\x{6268}
Ruby
\u{6268}
Rust
\u{6268}
Go
\u6268

Web

CSS
\006268
HtmlDecimal
扨
HtmlHexadecimal
扨
Url
%E6%89%A8

Code

MD5
409c6526e5297d73208515d9f52f44a1
Sha1
f8852b52e11032276d234dd484f25083f3ca90ac
Base64
5omo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6268';
console.log(char);  // Output: 扨

Java:

char c = '\u6268';
System.out.println(c);  // Output: 扨

JSON:

{"text": "\u6268"}  // Value: 扨

Python:

char = '\u6268'
print(char)  # Output: 扨

Perl:

my $char = "\x{6268}";
print $char;  # Output: 扨

PHP:

$char = "\x{6268}";
echo $char;  // Output: 扨

Ruby:

char = "\u{6268}"
puts char  # Output: 扨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006268";  /* Display: 扨 */
}

HTML Decimal:

<p>HTML decimal: &#25192;</p>  <!-- Display: 扨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6268;</p>  <!-- Display: 扨 -->

URL Encoding:

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

Encodings

MD5:

409c6526e5297d73208515d9f52f44a1

SHA1:

f8852b52e11032276d234dd484f25083f3ca90ac

Base64:

5omo