Unicode Finder

"焲" U+7132(CJK UNIFIED IDEOGRAPH-7132)

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

Programming

C
\u7132
JavaScript
\u7132
Java
\u7132
Json
\u7132
Python
\u7132
Perl
\x{7132}
PHP
\x{7132}
Ruby
\u{7132}
Rust
\u{7132}
Go
\u7132

Web

CSS
\007132
HtmlDecimal
焲
HtmlHexadecimal
焲
Url
%E7%84%B2

Code

MD5
06f8334f70f57abd3e0984b5e24293d8
Sha1
0e335bde62e7b3b764b75ec3dd99e0eadd74e4ec
Base64
54Sy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7132';
console.log(char);  // Output: 焲

Java:

char c = '\u7132';
System.out.println(c);  // Output: 焲

JSON:

{"text": "\u7132"}  // Value: 焲

Python:

char = '\u7132'
print(char)  # Output: 焲

Perl:

my $char = "\x{7132}";
print $char;  # Output: 焲

PHP:

$char = "\x{7132}";
echo $char;  // Output: 焲

Ruby:

char = "\u{7132}"
puts char  # Output: 焲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007132";  /* Display: 焲 */
}

HTML Decimal:

<p>HTML decimal: &#28978;</p>  <!-- Display: 焲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7132;</p>  <!-- Display: 焲 -->

URL Encoding:

// 焲 URL encoding
https://unicodefinder.com/search.php?query=%E7%84%B2

Encodings

MD5:

06f8334f70f57abd3e0984b5e24293d8

SHA1:

0e335bde62e7b3b764b75ec3dd99e0eadd74e4ec

Base64:

54Sy