Unicode Finder

"英" U+82F1(CJK UNIFIED IDEOGRAPH-82F1)

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

Programming

C
\u82F1
JavaScript
\u82F1
Java
\u82F1
Json
\u82F1
Python
\u82F1
Perl
\x{82F1}
PHP
\x{82F1}
Ruby
\u{82F1}
Rust
\u{82F1}
Go
\u82F1

Web

CSS
\0082F1
HtmlDecimal
英
HtmlHexadecimal
英
Url
%E8%8B%B1

Code

MD5
b7671c81deae49622f9604ebcf90492c
Sha1
c7acd3b00e99776f6a45d48aa9500dcaf33a7477
Base64
6Iux

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u82F1';
console.log(char);  // Output: 英

Java:

char c = '\u82F1';
System.out.println(c);  // Output: 英

JSON:

{"text": "\u82F1"}  // Value: 英

Python:

char = '\u82F1'
print(char)  # Output: 英

Perl:

my $char = "\x{82F1}";
print $char;  # Output: 英

PHP:

$char = "\x{82F1}";
echo $char;  // Output: 英

Ruby:

char = "\u{82F1}"
puts char  # Output: 英

Rust:

let c = '\u{82F1}';
println!("{}", c);  // Output: 英

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0082F1";  /* Display: 英 */
}

HTML Decimal:

<p>HTML decimal: &#33521;</p>  <!-- Display: 英 -->

HTML Hexadecimal:

<p>HTML hex: &#x82F1;</p>  <!-- Display: 英 -->

URL Encoding:

// 英 URL encoding
https://unicodefinder.com/search.php?query=%E8%8B%B1

Encodings

MD5:

b7671c81deae49622f9604ebcf90492c

SHA1:

c7acd3b00e99776f6a45d48aa9500dcaf33a7477

Base64:

6Iux