Unicode Finder

"璼" U+74BC(CJK UNIFIED IDEOGRAPH-74BC)

U+74BC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-74BC

Programming

C
\u74BC
JavaScript
\u74BC
Java
\u74BC
Json
\u74BC
Python
\u74BC
Perl
\x{74BC}
PHP
\x{74BC}
Ruby
\u{74BC}
Rust
\u{74BC}
Go
\u74BC

Web

CSS
\0074BC
HtmlDecimal
璼
HtmlHexadecimal
璼
Url
%E7%92%BC

Code

MD5
c52074ea59f6fc8c3d211e607bc54839
Sha1
c5104e3e8de1b6d3e269434340208eb4f1b242b2
Base64
55K8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74BC';
console.log(char);  // Output: 璼

Java:

char c = '\u74BC';
System.out.println(c);  // Output: 璼

JSON:

{"text": "\u74BC"}  // Value: 璼

Python:

char = '\u74BC'
print(char)  # Output: 璼

Perl:

my $char = "\x{74BC}";
print $char;  # Output: 璼

PHP:

$char = "\x{74BC}";
echo $char;  // Output: 璼

Ruby:

char = "\u{74BC}"
puts char  # Output: 璼

Rust:

let c = '\u{74BC}';
println!("{}", c);  // Output: 璼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0074BC";  /* Display: 璼 */
}

HTML Decimal:

<p>HTML decimal: &#29884;</p>  <!-- Display: 璼 -->

HTML Hexadecimal:

<p>HTML hex: &#x74BC;</p>  <!-- Display: 璼 -->

URL Encoding:

// 璼 URL encoding
https://unicodefinder.com/search.php?query=%E7%92%BC

Encodings

MD5:

c52074ea59f6fc8c3d211e607bc54839

SHA1:

c5104e3e8de1b6d3e269434340208eb4f1b242b2

Base64:

55K8