Unicode Finder

"褙" U+8919(CJK UNIFIED IDEOGRAPH-8919)

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

Programming

C
\u8919
JavaScript
\u8919
Java
\u8919
Json
\u8919
Python
\u8919
Perl
\x{8919}
PHP
\x{8919}
Ruby
\u{8919}
Rust
\u{8919}
Go
\u8919

Web

CSS
\008919
HtmlDecimal
褙
HtmlHexadecimal
褙
Url
%E8%A4%99

Code

MD5
2aff47dcae3b70cd763ca11eec9f49d1
Sha1
f083e10795c72f7a86147f4b8dceed89f0d57438
Base64
6KSZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8919';
console.log(char);  // Output: 褙

Java:

char c = '\u8919';
System.out.println(c);  // Output: 褙

JSON:

{"text": "\u8919"}  // Value: 褙

Python:

char = '\u8919'
print(char)  # Output: 褙

Perl:

my $char = "\x{8919}";
print $char;  # Output: 褙

PHP:

$char = "\x{8919}";
echo $char;  // Output: 褙

Ruby:

char = "\u{8919}"
puts char  # Output: 褙

Rust:

let c = '\u{8919}';
println!("{}", c);  // Output: 褙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008919";  /* Display: 褙 */
}

HTML Decimal:

<p>HTML decimal: &#35097;</p>  <!-- Display: 褙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8919;</p>  <!-- Display: 褙 -->

URL Encoding:

// 褙 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%99

Encodings

MD5:

2aff47dcae3b70cd763ca11eec9f49d1

SHA1:

f083e10795c72f7a86147f4b8dceed89f0d57438

Base64:

6KSZ