Unicode Finder

"扳" U+6273(CJK UNIFIED IDEOGRAPH-6273)

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

Programming

C
\u6273
JavaScript
\u6273
Java
\u6273
Json
\u6273
Python
\u6273
Perl
\x{6273}
PHP
\x{6273}
Ruby
\u{6273}
Rust
\u{6273}
Go
\u6273

Web

CSS
\006273
HtmlDecimal
扳
HtmlHexadecimal
扳
Url
%E6%89%B3

Code

MD5
82a71396e2caec2d253071f7bcf51b9a
Sha1
39518a9e25c0c63174a878ded0f9efd9d11a1e0b
Base64
5omz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6273';
console.log(char);  // Output: 扳

Java:

char c = '\u6273';
System.out.println(c);  // Output: 扳

JSON:

{"text": "\u6273"}  // Value: 扳

Python:

char = '\u6273'
print(char)  # Output: 扳

Perl:

my $char = "\x{6273}";
print $char;  # Output: 扳

PHP:

$char = "\x{6273}";
echo $char;  // Output: 扳

Ruby:

char = "\u{6273}"
puts char  # Output: 扳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006273";  /* Display: 扳 */
}

HTML Decimal:

<p>HTML decimal: &#25203;</p>  <!-- Display: 扳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6273;</p>  <!-- Display: 扳 -->

URL Encoding:

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

Encodings

MD5:

82a71396e2caec2d253071f7bcf51b9a

SHA1:

39518a9e25c0c63174a878ded0f9efd9d11a1e0b

Base64:

5omz