Unicode Finder

"炷" U+70B7(CJK UNIFIED IDEOGRAPH-70B7)

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

Programming

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

Web

CSS
\0070B7
HtmlDecimal
炷
HtmlHexadecimal
炷
Url
%E7%82%B7

Code

MD5
a15383365c386386688a51b53fc6bb7f
Sha1
dedff21539ff1a5abe580afae1c8581e8a430f0c
Base64
54K3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u70B7';
console.log(char);  // Output: 炷

Java:

char c = '\u70B7';
System.out.println(c);  // Output: 炷

JSON:

{"text": "\u70B7"}  // Value: 炷

Python:

char = '\u70B7'
print(char)  # Output: 炷

Perl:

my $char = "\x{70B7}";
print $char;  # Output: 炷

PHP:

$char = "\x{70B7}";
echo $char;  // Output: 炷

Ruby:

char = "\u{70B7}"
puts char  # Output: 炷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28855;</p>  <!-- Display: 炷 -->

HTML Hexadecimal:

<p>HTML hex: &#x70B7;</p>  <!-- Display: 炷 -->

URL Encoding:

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

Encodings

MD5:

a15383365c386386688a51b53fc6bb7f

SHA1:

dedff21539ff1a5abe580afae1c8581e8a430f0c

Base64:

54K3