Unicode Finder

"炲" U+70B2(CJK UNIFIED IDEOGRAPH-70B2)

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

Programming

C
\u70B2
JavaScript
\u70B2
Java
\u70B2
Json
\u70B2
Python
\u70B2
Perl
\x{70B2}
PHP
\x{70B2}
Ruby
\u{70B2}
Rust
\u{70B2}
Go
\u70B2

Web

CSS
\0070B2
HtmlDecimal
炲
HtmlHexadecimal
炲
Url
%E7%82%B2

Code

MD5
ad9b81d669a12c58ac6ecee7a0dbcdc9
Sha1
db8ab76e40153507eeada0ca17ae0dc111936fe9
Base64
54Ky

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70B2';
console.log(char);  // Output: 炲

Java:

char c = '\u70B2';
System.out.println(c);  // Output: 炲

JSON:

{"text": "\u70B2"}  // Value: 炲

Python:

char = '\u70B2'
print(char)  # Output: 炲

Perl:

my $char = "\x{70B2}";
print $char;  # Output: 炲

PHP:

$char = "\x{70B2}";
echo $char;  // Output: 炲

Ruby:

char = "\u{70B2}"
puts char  # Output: 炲

Rust:

let c = '\u{70B2}';
println!("{}", c);  // Output: 炲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0070B2";  /* Display: 炲 */
}

HTML Decimal:

<p>HTML decimal: &#28850;</p>  <!-- Display: 炲 -->

HTML Hexadecimal:

<p>HTML hex: &#x70B2;</p>  <!-- Display: 炲 -->

URL Encoding:

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

Encodings

MD5:

ad9b81d669a12c58ac6ecee7a0dbcdc9

SHA1:

db8ab76e40153507eeada0ca17ae0dc111936fe9

Base64:

54Ky