Unicode Finder

"禫" U+79AB(CJK UNIFIED IDEOGRAPH-79AB)

U+79AB
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-79AB

Programming

C
\u79AB
JavaScript
\u79AB
Java
\u79AB
Json
\u79AB
Python
\u79AB
Perl
\x{79AB}
PHP
\x{79AB}
Ruby
\u{79AB}
Rust
\u{79AB}
Go
\u79AB

Web

CSS
\0079AB
HtmlDecimal
禫
HtmlHexadecimal
禫
Url
%E7%A6%AB

Code

MD5
293b6b8eec6de5a7c02351c017b0a9c0
Sha1
2e19eea6e5a5efe7c11ce32b032f2729c761d3da
Base64
56ar

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u79AB';
console.log(char);  // Output: 禫

Java:

char c = '\u79AB';
System.out.println(c);  // Output: 禫

JSON:

{"text": "\u79AB"}  // Value: 禫

Python:

char = '\u79AB'
print(char)  # Output: 禫

Perl:

my $char = "\x{79AB}";
print $char;  # Output: 禫

PHP:

$char = "\x{79AB}";
echo $char;  // Output: 禫

Ruby:

char = "\u{79AB}"
puts char  # Output: 禫

Rust:

let c = '\u{79AB}';
println!("{}", c);  // Output: 禫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0079AB";  /* Display: 禫 */
}

HTML Decimal:

<p>HTML decimal: &#31147;</p>  <!-- Display: 禫 -->

HTML Hexadecimal:

<p>HTML hex: &#x79AB;</p>  <!-- Display: 禫 -->

URL Encoding:

// 禫 URL encoding
https://unicodefinder.com/search.php?query=%E7%A6%AB

Encodings

MD5:

293b6b8eec6de5a7c02351c017b0a9c0

SHA1:

2e19eea6e5a5efe7c11ce32b032f2729c761d3da

Base64:

56ar