Unicode Finder

"輕" U+8F15(CJK UNIFIED IDEOGRAPH-8F15)

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

Programming

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

Web

CSS
\008F15
HtmlDecimal
輕
HtmlHexadecimal
輕
Url
%E8%BC%95

Code

MD5
b8c95649b3583b811c8dfe58b2ce2f19
Sha1
60a361787a0f296beab8bebe2de1a723a71cee84
Base64
6LyV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8F15';
console.log(char);  // Output: 輕

Java:

char c = '\u8F15';
System.out.println(c);  // Output: 輕

JSON:

{"text": "\u8F15"}  // Value: 輕

Python:

char = '\u8F15'
print(char)  # Output: 輕

Perl:

my $char = "\x{8F15}";
print $char;  # Output: 輕

PHP:

$char = "\x{8F15}";
echo $char;  // Output: 輕

Ruby:

char = "\u{8F15}"
puts char  # Output: 輕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36629;</p>  <!-- Display: 輕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F15;</p>  <!-- Display: 輕 -->

URL Encoding:

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

Encodings

MD5:

b8c95649b3583b811c8dfe58b2ce2f19

SHA1:

60a361787a0f296beab8bebe2de1a723a71cee84

Base64:

6LyV