Unicode Finder

"宏" U+5B8F(CJK UNIFIED IDEOGRAPH-5B8F)

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

Programming

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

Web

CSS
\005B8F
HtmlDecimal
宏
HtmlHexadecimal
宏
Url
%E5%AE%8F

Code

MD5
6d0d5d0a99dedcb4b13a62d47feb6883
Sha1
378349708f38bc1e0b32dd495b5362580613c940
Base64
5a6P

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5B8F';
console.log(char);  // Output: 宏

Java:

char c = '\u5B8F';
System.out.println(c);  // Output: 宏

JSON:

{"text": "\u5B8F"}  // Value: 宏

Python:

char = '\u5B8F'
print(char)  # Output: 宏

Perl:

my $char = "\x{5B8F}";
print $char;  # Output: 宏

PHP:

$char = "\x{5B8F}";
echo $char;  // Output: 宏

Ruby:

char = "\u{5B8F}"
puts char  # Output: 宏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23439;</p>  <!-- Display: 宏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B8F;</p>  <!-- Display: 宏 -->

URL Encoding:

// 宏 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%8F

Encodings

MD5:

6d0d5d0a99dedcb4b13a62d47feb6883

SHA1:

378349708f38bc1e0b32dd495b5362580613c940

Base64:

5a6P