Unicode Finder

"垖" U+5796(CJK UNIFIED IDEOGRAPH-5796)

U+5796
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5796

Programming

C
\u5796
JavaScript
\u5796
Java
\u5796
Json
\u5796
Python
\u5796
Perl
\x{5796}
PHP
\x{5796}
Ruby
\u{5796}
Rust
\u{5796}
Go
\u5796

Web

CSS
\005796
HtmlDecimal
垖
HtmlHexadecimal
垖
Url
%E5%9E%96

Code

MD5
854c2f2fedbb09464a3c898f11e8658e
Sha1
0e6d465131662e33e7ed92ade364294996c2eea0
Base64
5Z6W

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5796';
console.log(char);  // Output: 垖

Java:

char c = '\u5796';
System.out.println(c);  // Output: 垖

JSON:

{"text": "\u5796"}  // Value: 垖

Python:

char = '\u5796'
print(char)  # Output: 垖

Perl:

my $char = "\x{5796}";
print $char;  # Output: 垖

PHP:

$char = "\x{5796}";
echo $char;  // Output: 垖

Ruby:

char = "\u{5796}"
puts char  # Output: 垖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005796";  /* Display: 垖 */
}

HTML Decimal:

<p>HTML decimal: &#22422;</p>  <!-- Display: 垖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5796;</p>  <!-- Display: 垖 -->

URL Encoding:

// 垖 URL encoding
https://unicodefinder.com/search.php?query=%E5%9E%96

Encodings

MD5:

854c2f2fedbb09464a3c898f11e8658e

SHA1:

0e6d465131662e33e7ed92ade364294996c2eea0

Base64:

5Z6W