Unicode Finder

"宪" U+5BAA(CJK UNIFIED IDEOGRAPH-5BAA)

U+5BAA
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5BAA

Programming

C
\u5BAA
JavaScript
\u5BAA
Java
\u5BAA
Json
\u5BAA
Python
\u5BAA
Perl
\x{5BAA}
PHP
\x{5BAA}
Ruby
\u{5BAA}
Rust
\u{5BAA}
Go
\u5BAA

Web

CSS
\005BAA
HtmlDecimal
宪
HtmlHexadecimal
宪
Url
%E5%AE%AA

Code

MD5
bdda5dd4d32a76eeeac7a82df5d4afa0
Sha1
30d1607d48213ff9988f6f05d417e344ab9c66b1
Base64
5a6q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BAA';
console.log(char);  // Output: 宪

Java:

char c = '\u5BAA';
System.out.println(c);  // Output: 宪

JSON:

{"text": "\u5BAA"}  // Value: 宪

Python:

char = '\u5BAA'
print(char)  # Output: 宪

Perl:

my $char = "\x{5BAA}";
print $char;  # Output: 宪

PHP:

$char = "\x{5BAA}";
echo $char;  // Output: 宪

Ruby:

char = "\u{5BAA}"
puts char  # Output: 宪

Rust:

let c = '\u{5BAA}';
println!("{}", c);  // Output: 宪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BAA";  /* Display: 宪 */
}

HTML Decimal:

<p>HTML decimal: &#23466;</p>  <!-- Display: 宪 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BAA;</p>  <!-- Display: 宪 -->

URL Encoding:

// 宪 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%AA

Encodings

MD5:

bdda5dd4d32a76eeeac7a82df5d4afa0

SHA1:

30d1607d48213ff9988f6f05d417e344ab9c66b1

Base64:

5a6q