Unicode Finder

"璏" U+748F(CJK UNIFIED IDEOGRAPH-748F)

U+748F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-748F

Programming

C
\u748F
JavaScript
\u748F
Java
\u748F
Json
\u748F
Python
\u748F
Perl
\x{748F}
PHP
\x{748F}
Ruby
\u{748F}
Rust
\u{748F}
Go
\u748F

Web

CSS
\00748F
HtmlDecimal
璏
HtmlHexadecimal
璏
Url
%E7%92%8F

Code

MD5
a5633cc798db99edf17ecbe9038ed97a
Sha1
4c8d33e87f380beaf37a60ec04843aaf1dff1bd8
Base64
55KP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u748F';
console.log(char);  // Output: 璏

Java:

char c = '\u748F';
System.out.println(c);  // Output: 璏

JSON:

{"text": "\u748F"}  // Value: 璏

Python:

char = '\u748F'
print(char)  # Output: 璏

Perl:

my $char = "\x{748F}";
print $char;  # Output: 璏

PHP:

$char = "\x{748F}";
echo $char;  // Output: 璏

Ruby:

char = "\u{748F}"
puts char  # Output: 璏

Rust:

let c = '\u{748F}';
println!("{}", c);  // Output: 璏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00748F";  /* Display: 璏 */
}

HTML Decimal:

<p>HTML decimal: &#29839;</p>  <!-- Display: 璏 -->

HTML Hexadecimal:

<p>HTML hex: &#x748F;</p>  <!-- Display: 璏 -->

URL Encoding:

// 璏 URL encoding
https://unicodefinder.com/search.php?query=%E7%92%8F

Encodings

MD5:

a5633cc798db99edf17ecbe9038ed97a

SHA1:

4c8d33e87f380beaf37a60ec04843aaf1dff1bd8

Base64:

55KP