Unicode Finder

"征" U+5F81(CJK UNIFIED IDEOGRAPH-5F81)

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

Programming

C
\u5F81
JavaScript
\u5F81
Java
\u5F81
Json
\u5F81
Python
\u5F81
Perl
\x{5F81}
PHP
\x{5F81}
Ruby
\u{5F81}
Rust
\u{5F81}
Go
\u5F81

Web

CSS
\005F81
HtmlDecimal
征
HtmlHexadecimal
征
Url
%E5%BE%81

Code

MD5
6feddf8b3b349852f640bbe001f30c5d
Sha1
0925591f80d8358f7e821c52adb663612c184684
Base64
5b6B

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F81';
console.log(char);  // Output: 征

Java:

char c = '\u5F81';
System.out.println(c);  // Output: 征

JSON:

{"text": "\u5F81"}  // Value: 征

Python:

char = '\u5F81'
print(char)  # Output: 征

Perl:

my $char = "\x{5F81}";
print $char;  # Output: 征

PHP:

$char = "\x{5F81}";
echo $char;  // Output: 征

Ruby:

char = "\u{5F81}"
puts char  # Output: 征

Rust:

let c = '\u{5F81}';
println!("{}", c);  // Output: 征

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005F81";  /* Display: 征 */
}

HTML Decimal:

<p>HTML decimal: &#24449;</p>  <!-- Display: 征 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F81;</p>  <!-- Display: 征 -->

URL Encoding:

// 征 URL encoding
https://unicodefinder.com/search.php?query=%E5%BE%81

Encodings

MD5:

6feddf8b3b349852f640bbe001f30c5d

SHA1:

0925591f80d8358f7e821c52adb663612c184684

Base64:

5b6B