Unicode Finder

"輰" U+8F30(CJK UNIFIED IDEOGRAPH-8F30)

U+8F30
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8F30

Programming

C
\u8F30
JavaScript
\u8F30
Java
\u8F30
Json
\u8F30
Python
\u8F30
Perl
\x{8F30}
PHP
\x{8F30}
Ruby
\u{8F30}
Rust
\u{8F30}
Go
\u8F30

Web

CSS
\008F30
HtmlDecimal
輰
HtmlHexadecimal
輰
Url
%E8%BC%B0

Code

MD5
4410949231240b62e3a29796ae108260
Sha1
3485b69f6c01f496751ca36af0b46ef0adfc0c8e
Base64
6Lyw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8F30';
console.log(char);  // Output: 輰

Java:

char c = '\u8F30';
System.out.println(c);  // Output: 輰

JSON:

{"text": "\u8F30"}  // Value: 輰

Python:

char = '\u8F30'
print(char)  # Output: 輰

Perl:

my $char = "\x{8F30}";
print $char;  # Output: 輰

PHP:

$char = "\x{8F30}";
echo $char;  // Output: 輰

Ruby:

char = "\u{8F30}"
puts char  # Output: 輰

Rust:

let c = '\u{8F30}';
println!("{}", c);  // Output: 輰

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008F30";  /* Display: 輰 */
}

HTML Decimal:

<p>HTML decimal: &#36656;</p>  <!-- Display: 輰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F30;</p>  <!-- Display: 輰 -->

URL Encoding:

// 輰 URL encoding
https://unicodefinder.com/search.php?query=%E8%BC%B0

Encodings

MD5:

4410949231240b62e3a29796ae108260

SHA1:

3485b69f6c01f496751ca36af0b46ef0adfc0c8e

Base64:

6Lyw