Unicode Finder

"炿" U+70BF(CJK UNIFIED IDEOGRAPH-70BF)

U+70BF
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-70BF

Programming

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

Web

CSS
\0070BF
HtmlDecimal
炿
HtmlHexadecimal
炿
Url
%E7%82%BF

Code

MD5
f591c8d0d155b33ff87c434ace595bf1
Sha1
6b0677c920a4259033078669f93a42592e916c28
Base64
54K/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u70BF';
console.log(char);  // Output: 炿

Java:

char c = '\u70BF';
System.out.println(c);  // Output: 炿

JSON:

{"text": "\u70BF"}  // Value: 炿

Python:

char = '\u70BF'
print(char)  # Output: 炿

Perl:

my $char = "\x{70BF}";
print $char;  # Output: 炿

PHP:

$char = "\x{70BF}";
echo $char;  // Output: 炿

Ruby:

char = "\u{70BF}"
puts char  # Output: 炿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28863;</p>  <!-- Display: 炿 -->

HTML Hexadecimal:

<p>HTML hex: &#x70BF;</p>  <!-- Display: 炿 -->

URL Encoding:

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

Encodings

MD5:

f591c8d0d155b33ff87c434ace595bf1

SHA1:

6b0677c920a4259033078669f93a42592e916c28

Base64:

54K/