Unicode Finder

"婽" U+5A7D(CJK UNIFIED IDEOGRAPH-5A7D)

U+5A7D
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5A7D

Programming

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

Web

CSS
\005A7D
HtmlDecimal
婽
HtmlHexadecimal
婽
Url
%E5%A9%BD

Code

MD5
08c582917d6100b7ac5d527281b44130
Sha1
1bbef3c626d780c569e5d0e572ce2d0bf4974544
Base64
5am9

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5A7D';
console.log(char);  // Output: 婽

Java:

char c = '\u5A7D';
System.out.println(c);  // Output: 婽

JSON:

{"text": "\u5A7D"}  // Value: 婽

Python:

char = '\u5A7D'
print(char)  # Output: 婽

Perl:

my $char = "\x{5A7D}";
print $char;  # Output: 婽

PHP:

$char = "\x{5A7D}";
echo $char;  // Output: 婽

Ruby:

char = "\u{5A7D}"
puts char  # Output: 婽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23165;</p>  <!-- Display: 婽 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A7D;</p>  <!-- Display: 婽 -->

URL Encoding:

// 婽 URL encoding
https://unicodefinder.com/search.php?query=%E5%A9%BD

Encodings

MD5:

08c582917d6100b7ac5d527281b44130

SHA1:

1bbef3c626d780c569e5d0e572ce2d0bf4974544

Base64:

5am9